| Author |
Difference between Default & Zero Constructor
|
faisal usmani
Ranch Hand
Joined: Jan 14, 2006
Posts: 139
|
|
Hi , I am not sure but i think there is a difference between a zero argument constructor given by a developer and the default constuctor made by Java compiler if no constuctor is given inside a class . Can anybody of you help in understanding the difference between the two . thanks is advance Look at all the sentences which seem true and question them.
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24041
|
|
|
If you define one yourself, it can be public, protected, private, or default, and of course, it can contain arbitrary code. If you leave it up to the compiler to define one, it will be public if the class is public, or default-protected otherwise, and contain no code. But aside from that, there's no difference.
|
[Jess in Action][AskingGoodQuestions]
|
 |
faisal usmani
Ranch Hand
Joined: Jan 14, 2006
Posts: 139
|
|
Thanks Ernest , i got the point . I have always depended on the kindness of strangers.
|
 |
 |
|
|
subject: Difference between Default & Zero Constructor
|
|
|