ruby 猴子补丁模式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 猴子补丁模式相关的知识,希望对你有一定的参考价值。

class Human
  def say
    puts "hello"
  end
end

module AnyModule
  class ::Human
    def say
      puts "hooooo!!!"
    end
  end

  bob = Human.new
  puts "bob:"
  bob.say
end

alice = Human.new
puts "alice:"
alice.say

以上是关于ruby 猴子补丁模式的主要内容,如果未能解决你的问题,请参考以下文章