当猴子修补一个方法时,你能从新的实现中调用被重写的方法吗?
假设我是猴子在类中修补一个方法,我如何从重写方法调用重写的方法?比如,有点像super
super
例如:
class Foo def bar() "Hello" endend class Foo def bar() super() + " World" endend>> Foo.new.bar == "Hello World"
白猪掌柜的
冉冉说
相关分类