| Author |
Default Constructor doubt
|
saloni jhanwar
Ranch Hand
Joined: Feb 09, 2012
Posts: 583
|
|
public Car() ,Is it programmer created default constructor ?Is there any rule that constructor access modifier must be same as class access modifier to make it default constructor ?
|
Tell the difficulties that i am difficult.
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3795
|
|
That's a no-argument constructor. Not quite the same as the default constructor, which is what the compiler will add if the programmer doesn't provide one (though a default constructor always is no-argument).
Which means the answer to the second question is "no". If a default constructor is added, though, I believe it does use the same access modifier as the class.
|
 |
saloni jhanwar
Ranch Hand
Joined: Feb 09, 2012
Posts: 583
|
|
Matthew Brown wrote:That's a no-argument constructor. Not quite the same as the default constructor, which is what the compiler will add if the programmer doesn't provide one (though a default constructor always is no-argument).
Which means the answer to the second question is "no". If a default constructor is added, though, I believe it does use the same access modifier as the class.
thanks Matthew
|
 |
 |
|
|
subject: Default Constructor doubt
|
|
|