class Fixnum
alias :old_plus :+
def +(value)
puts "self is:#{self}"
self.old_plus(value)
end
end
如果你打开 irb 并像上面那样做一个猴子补丁,那么每次你按回车键时,它都会打印一些随机数,如:
2.0.0p195 :019 >
self is:18
self is:116
self is:19
self is:17
self is:0
这对我来说很奇怪,因为只有 Fixnum 对象可以调用函数:+。有谁知道为什么会这样?
提前致谢。