构造函数重写
我有一个类:
class One
def initialize; end
end
我需要使用自己的构造函数创建一个新类,如下所示:
class Two < One
def initialize(some)
puts some
super
end
end
Two.new("thing")
但是当我启动代码时,出现错误:
thing
test.rb:10:in `initialize': wrong number of arguments (1 for 0) (ArgumentError)
I have a class:
class One
def initialize; end
end
I need to create a new class with my own constructor like this:
class Two < One
def initialize(some)
puts some
super
end
end
Two.new("thing")
but when I launch the code, I got an error:
thing
test.rb:10:in `initialize': wrong number of arguments (1 for 0) (ArgumentError)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,
super
(不带括号)是一种特殊形式。它使用原始参数调用超类方法。相反,尝试致电
super
in this case (without parentheses) is a special form. It calls the superclass method with the original params.Instead try calling