module Test def self.model_method puts "this is a module method" end end class A include Test end A.model_method
这将是错误的:
undefined method `model_method’ for A:Class (NoMethodError)
但是当我使用A的元类时,它的作用是:
module Test def model_method puts "this is a module method" end end class A class << self include Test end end A.model_method
有人可以解释一下吗
解决方法
如果要在包含模块时将类方法和实例方法混合到一个类中,则可以按照以下模式:
module YourModule module ClassMethods def a_class_method puts "I'm a class method" end end def an_instance_method puts "I'm an instance method" end def self.included(base) base.extend ClassMethods end end class Whatever include YourModule end Whatever.a_class_method # => I'm a class method Whatever.new.an_instance_method # => I'm an instance method
基本上要过度简化它,你扩展到添加类方法,并包括添加实例方法.当包含模块时,#included方法被调用,其中包含实际的类.从这里可以使用另一个模块的一些类方法来扩展类.这是一个很常见的模式.
参见:http://api.rubyonrails.org/classes/ActiveSupport/Concern.html