require include 的区别

 在ruby相关的开发中我们时长要和require , load , include打交道,可能用到最多的是require了。
但是他们之间的正真的区别你了解吗?

可能有很多人和我一样,只知其一,不知其二。好下面我们一起来搞清除他们的细微区别。

其实他们三个都是在kernel中定义的,用来包含外部物件到程序中来。
他们的区别如下:

require , load 

共同点:多为包含外部文件到程序中来。
不同点:其中require多引入rb源文件(不用写文件的后最, 如:require 'set')

load于require功能一致,但多为引入资源文件,(如:yml文件 , load 'language.yml' 必须要有后最),

同时require只用引入一次(再次引入的时候会忽略)。但是load可以加载多次(每一次都是新的加载)。


include

用来加载rb文件中的模块到程序中,用来实现 mix_in。
例如:在a.rb 文件中有 类 a1 a2 ,模块 am1。 在 b.rb 文件中 有类 b1 模块 bm1。

现在假设在b.rb 文件中要使用 a.rb 文件中的类 a1 a2 ,则在 b.rb 文件中要引入 a.rb 文件, 
使用 require 'a' 

假设在b1类 和 bm1 模块中 都要使用 模块 am1 , 则在 b.rb文件中
使用 require 'a' include 'am1'

假设只是在b1类使用 模块 am1 , 则在b1类中中
使用 require 'a' include 'am1'

 

 

 

ps     

 If the argument is a path and complete filename, the require method will look there for the file. However, if the argument is a shortened name, the require method will search through a number of pre-defined directories on your system for that file. 

你可能感兴趣的:(开发,Ruby,include,require,休闲)