扩展时的Ruby调用模块方法

扩展时的Ruby调用模块方法,第1张

概述给定一个基本的 ruby类和模块,有一种方法可以在扩展类的实例时立即从模块调用方法吗? class Dog def initialize(name) @name = name end endmodule Speech def say_name puts @name end # call to method in module ? say_name 给定一个基本的 ruby类和模块,有一种方法可以在扩展类的实例时立即从模块调用方法吗?

class Dog   def initialize(name)    @name = name   end endmodule Speech  def say_name    puts @name  end  # call to method in module ?  say_nameendfIDo = Dog.new('fIDo')fIDo.extend Speech    => *'fIDo'*

我知道’included’方法在包含模块时有点像回调,但我希望有类似的东西用于扩展.

解决方法 这是使用方法 extend_object的一个技巧.

Extends the specifIEd object by adding this module’s constants and methods (which are added as singleton methods). This is the callback method used by Object#extend.

class Dog   def initialize(name)    @name = name   end endmodule Speech  def Speech.extend_object(o)    super    puts o.say_name  end  def say_name    @name  endendfIDo = Dog.new('fIDo')fIDo.extend Speech # 'fIDo'
总结

以上是内存溢出为你收集整理的扩展时的Ruby调用模块方法全部内容,希望文章能够帮你解决扩展时的Ruby调用模块方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1276638.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存