extend

来源:互联网 发布:自动操作软件 编辑:程序博客网 时间:2024/06/10 07:34
在类定义中引入module后,module中的方法成为类的类方法。 
在类定义中用extend引入module。 
例如: 
module Base   def test     p "This is a class method!"   end end class Car   extend Base endCar.test => "This is a class method!" 


0 0