Ruby 中的方法重写
我的代码如下所示:
module A
def b(a)
a+1
end
end
class B
include A
end
我想在 B 类中编写一个类似如下的方法
class B
def b(a)
if a==2 # are you sure? same result as the old method
3
else
A.b(a)
end
end
end
我该如何在 Ruby 中执行此操作?
I have code that looks like this:
module A
def b(a)
a+1
end
end
class B
include A
end
I would like to write a method in the class B that looks sort of like this
class B
def b(a)
if a==2 # are you sure? same result as the old method
3
else
A.b(a)
end
end
end
How do I go about doing this in Ruby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 super 函数,它调用该函数的“先前”定义:
You want the
super
function, which invokes the 'previous' definition of the function: