When does the compiler supply a default constructor for a
class?
Answers were Sorted based on User's Feedback
Answer / satish
when we do not specify constructor expectly,java complier
provides default constructor at the time of compliation time
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / devarathnam c,kotagudibanda(po
Hi... The compiler will supply defaulst constructor when u
not supplied constructor in the program.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / puneet
java follows the constructor chaining and whenever a class
in instantiated,the cons of the super class is always
invoked and to follow that when a class without contructor
is loaded then the compiler at the compiler gives it a
default constructor in order to help that make instantiated
and invoke the super class cons, it autmatically makes a
consturc at compile time and writes the first line as
super(); which invokes the super class constructor.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ravichandra
We cannot supply any constructor in the class the compiler
supply a default constructor.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / manju
In java if we do not create the constructor,by default it
will be automatically invoked at compile time
| Is This Answer Correct ? | 2 Yes | 2 No |
When we donot override the default constructor in a class,
which is extended implicitly by our class from java.lang
package, compiler supplies it.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / www.google.com
<a href="localhost.com">locahost</a> nice post
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ravikiran
when there is no other constructor with arguments is defined
| Is This Answer Correct ? | 0 Yes | 4 No |
What is an class?
Can a static method be final?
what are the analysis of an object
Is 0 true or is 1 true?
what is the difference between AWT and SWING what is the advantage of using swing?
what is default constructor and parameterised constructor with example?
we cannot create an object of interface but we can create a variable of it
How to sort a collection of custom Objects in Java?
what is the use/perpose of having a method antive?
How will you compute size of a structure?
How use .contains in java?
What is native code?