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

when we create any constructor (whether as default or argumented) in a class then , JVM why does not povide constructor at the time of compilation?

share|improve this question
2  
your question isn't very clear. can you precise it, if possible with code sample ? – streetpc Jul 13 '10 at 8:17
2  
Harish, I don't understand your question. Can you clarify it ? – Riduidel Jul 13 '10 at 8:18
If you create the constructor, why should the JVM do so? – Carl Smotricz Jul 13 '10 at 8:20

1 Answer

Here's an excerpt from the Java language specification:

If a class contains no constructor declarations, then a default constructor that takes no parameters is automatically provided:

  • If the class being declared is the primordial class Object, then the default constructor has an empty body.
  • Otherwise, the default constructor takes no parameters and simply invokes the superclass constructor with no arguments.

So in fact the JVM 'provides' the default constructor whenever the class contains no constructor declaration. It is the same as

public MyClass() {}
share|improve this answer

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.