您可以将类中的模块包含在类中,以将类方法和实例方法添加到该特定类来扩展类功能.
module M def self.class_method_from_module 'from class_method_from_module' end def instance_method_from_module 'from instance_method_from_module' end end class C include M def self.class_method 'from class_method' end def instance_method 'from instance_method' end end puts C.class_method => 'from class_method' puts C.class_method_from_module => 'from class_method_from_module' puts C.new.instance_method => 'from instance_method' puts C.new.instance_method_from_module => 'instance_method_from_module'
现在即使从存储器中删除模块M,具体如下:
Object.send(:remove_const,:M) #remove the module M puts C.class_method_from_module => 'from class_method_from_module' puts C.new.instance_method_from_module => 'instance_method_from_module'