首页 > 编程 > Ruby > 正文

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

2020-02-24 15:38:47
字体:
来源:转载
供稿:网友

当我们在写函数的时候有一个以上的类并且需要函数时,你可以在模块中定义函数并包含它,本文重点讲述Ruby中require、load、include、extend的区别,一起来看看吧!

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中require、load、include、extend的区别。看完上面的内容之后,是不是觉得在工作中是非常实用的。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选