gpt4 book ai didi

ruby - 调用 super 时参数数量错误

转载 作者:数据小太阳 更新时间:2023-10-29 06:48:29 24 4
gpt4 key购买 nike

class A
def initialize
print "Hello! "
end
end

class B < A
def initialize(name)
super
print "My name is #{name}!"
end
end

test = B.new("Fred")

我明白了

wrong number of arguments (1 for 0)

但是为什么?类 B 需要一个参数,我给它没问题。类 A 不需要任何参数,所以我根本没有通过 super 传递任何东西。

最佳答案

您需要使用 super() 才能不带参数调用它。 Super 本身会使用提供给自身的参数(即“名称”)自动调用父级

关于ruby - 调用 super 时参数数量错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11785641/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com