Multiple constructor in Ruby

A

Arturo Bonechi

Hello!

I have a question about the constructor in Ruby.

Here is an exemple class :

class Test
def initialize param
puts param
end
def initialize param1, param2
puts "#{param1} #{param2}"
end
end

If I call the second constructor, everything works fine, whereas I got
an 'ArgumentError: wrong number of arguments (1 for 2)' with the first.

So, has the second constructor overriden the first one? Does that mean
you have to implement 'initialize' only once in a class?

Thank you!
 
J

Jeremy Bopp

Hello!

I have a question about the constructor in Ruby.

Here is an exemple class :

class Test
def initialize param
puts param
end
def initialize param1, param2
puts "#{param1} #{param2}"
end
end

If I call the second constructor, everything works fine, whereas I got
an 'ArgumentError: wrong number of arguments (1 for 2)' with the first.

So, has the second constructor overriden the first one? Does that mean
you have to implement 'initialize' only once in a class?

This is true for any method definition in Ruby, not just constructors.
There is no facility to select methods based on method signature, so
Ruby sees defining a method with the same name as an existing one as
replacing or overriding the original.

-Jeremy
 
A

Andrew Wagner

[Note: parts of this message were removed to make it a legal post.]

Hello!

I have a question about the constructor in Ruby.

Here is an exemple class :

class Test
def initialize param
puts param
end
def initialize param1, param2
puts "#{param1} #{param2}"
end
end

If I call the second constructor, everything works fine, whereas I got
an 'ArgumentError: wrong number of arguments (1 for 2)' with the first.

So, has the second constructor overriden the first one? Does that mean
you have to implement 'initialize' only once in a class?

Thank you!
The answer to both of your questions is yes. Well, you *can* implement it
twice, but, as in your code, the first one is irrelevant. Remember that
while defining a class, all you're doing is executing code. Anyway, things
like default values and the hash options idiom make method overloading quite
unnecessary.
 
A

Arturo Bonechi

Ok, thanks to both of you for those quick replies!

That explains a lot of things and solves my problem.

Thank you again!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,767
Messages
2,569,570
Members
45,045
Latest member
DRCM

Latest Threads

Top