美好的一天,我是红宝石的新手。我想知道如何从子类的方法运行父方法?在java中它会像
class Child
..
def something_else
super.something
end
end
并在 php
parent::method_name();
你能告诉我如何在 Ruby 中做到这一点吗?只发现了这个,使用alias_method_chain有点难看
美好的一天,我是红宝石的新手。我想知道如何从子类的方法运行父方法?在java中它会像
class Child
..
def something_else
super.something
end
end
并在 php
parent::method_name();
你能告诉我如何在 Ruby 中做到这一点吗?只发现了这个,使用alias_method_chain有点难看