构造函数重写

发布于 2024-08-27 09:12:46 字数 364 浏览 4 评论 0原文

我有一个类:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄离 2024-09-03 09:12:46

在这种情况下,super(不带括号)是一种特殊形式。它使用原始参数调用超类方法。

相反,尝试致电

super()

super in this case (without parentheses) is a special form. It calls the superclass method with the original params.

Instead try calling

super()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文