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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Here's an excerpt from the Java language specification:
So in fact the JVM 'provides' the default constructor whenever the class contains no constructor declaration. It is the same as
|
|||
|
|