Question

java question have a clear and detailed explanation for a thumbs-up rating what is default constructor?

java question

have a clear and detailed explanation for a thumbs-up rating

what is default constructor?

0 0
Add a comment Improve this question Transcribed image text
Answer #1
Default constructor:
----------------------
1. A default constructor is a constructor with no arguments.
2. It is called default constructor because it is provided by java compiler for every class.
3. Whenever we create object for a class with no arguments then default constructor is getting called.
4. Default constructor is nothing but a method with name same as class with no arguments, no return type, no parameters.

Example:
-----------
class Example{
     
}

Creating object for Example class
Example obj = new Example();

This object is created with no arguments Example(), So, it calls the default constructor. 
Here, constructor is getting created by java.

It looks like
public Example(){

}

Note: Please comment below if you have any doubtsPlease up vote the solution if it helped. Thanks!

Add a comment
Know the answer?
Add Answer to:
java question have a clear and detailed explanation for a thumbs-up rating what is default constructor?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT