主页 > 知识库 > Ruby中require、load、include、extend的区别介绍

Ruby中require、load、include、extend的区别介绍

热门标签:呼叫中心市场需求 硅谷的囚徒呼叫中心 电话运营中心 客户服务 Win7旗舰版 百度AI接口 企业做大做强 语音系统

require,load用于文件,如.rb等等结尾的文件。include,load则用于包含一个文件中的模块。
require 一般情况下用于加载库文件,而load则用于加载配置文件。

1、require:加载一个库,并且只加载一次,如果多次加载会返回false。只有当要加载的库位于一个分离的文件中时才有必要使用require。使用时不需要加扩展名,一般放在文件的最前面:

复制代码 代码如下:

require ‘test_library'

2、load:
load用来多次加载一个库,必须指定扩展名:
复制代码 代码如下:

load ‘test_library.rb'

3、extend:在定义类时使用,把module的实例方法作为当前类的类方法.
复制代码 代码如下:

module Test
 def class_type
  "This class is of type:#{self.class}"
 end
end

class TestClass
 extend Test
end

puts TestClass.class_type  #=>  This class is of type:Class


4、include:在定义类时使用,把module的实例方法作为当前类的实例方法. 把module的变量作为当前类的类变量.
include并不会把module的实例方法拷贝到类中,只是做了引用,包含module的不同类都指向了同一个对象。如果你改变了module的定义,即使你的程序还在运行,所有包含module的类都会改变行为。
复制代码 代码如下:

module Test
 @a = 1
 def class_type
  "This class is of type:#{self.class}"
 end
end

class TestClass
 include Test
end

# puts TestClass.class_type  #=> undefined method `class_type' for TestClass:Class (NoMethodError)

puts TestClass.new.class_type  #=> This class is of type:TestClass

您可能感兴趣的文章:
  • Ruby 中的 module_function 和 extend self异同

标签:崇左 长沙 海南 山西 喀什 济南 山西 安康

巨人网络通讯声明:本文标题《Ruby中require、load、include、extend的区别介绍》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266