Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
388 views
in Technique[技术] by (71.8m points)

ruby - Constructor overriding

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)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

Instead try calling

super()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...