本文介绍了Ruby中的require_relative和require有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Ruby中require_relative
和require
有什么区别?
What is the difference between require_relative
and require
in Ruby?
推荐答案
只需查看文档:
例如,如果您在"test"目录中有单元测试类,并且在"test/data"目录中有它们的数据,那么在测试用例中可以使用如下代码:
For example, if you have unit test classes in the "test" directory, and data for them under the test "test/data" directory, then you might use a line like this in a test case:
require_relative "data/customer_data_1"
这篇关于Ruby中的require_relative和require有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!