Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It works fine when constructors are not defined, but gives errors if I define a parameterized constructor and not a default one and not passing any values while creating an object. I thought constructors are predefined then why do I need to define a default constructor if I've defined parameterized, ain't default is predefined ??

P.S. : Noob here

share|improve this question

3 Answers

up vote 12 down vote accepted

A default (no-argument) constructor is automatically created only when you do not define any constructor yourself.

If you need two constructors, one with arguments and one without, you need to manually define both.

share|improve this answer
thanks for your support – Ayush Goyal Sep 4 '10 at 6:13
No problem. Make sure to either accept an answer or delete the question since it's resolved. :) – Justin Ardini Sep 4 '10 at 6:15
How do I accept ? – Ayush Goyal Sep 4 '10 at 6:17
1  
There should be a checkmark to the left of each answer. Click it and it will turn green, indicating that answer as accepted. – Justin Ardini Sep 4 '10 at 6:17

A no-arg constructor is automatically inserted for you, if you don't write one. This means, if you write a constructor with some parameters, it will be the only constructor you have, so you must pass some values for those parameters to create an instance of it.

share|improve this answer
ohk now got it :) – Ayush Goyal Sep 4 '10 at 6:14

This is exactly the expected behavior.

Java automatically generates a default (no arguments constructors) for classes that don't have any constructor.

If you define another constructor (with arguments), default constructor will not be generated. If you still want one, you need to define it yourself.

share|improve this answer
Thanks . Got it cleared :) – Ayush Goyal Sep 4 '10 at 6:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.