I would appreciate an explanation for these questions:
- Can we OVERRIDE a constructor in Java?
- Can a constructor be private?
|
I would appreciate an explanation for these questions:
|
|||||||||
|
|
No, you can't override a constructor. They're not inherited. However, each subclass constructor has to chain either to another constructor within the subclass or to a constructor in the superclass. So for example:
The implication of constructors not being inherited is that you can't do this:
As for your second question, yes, a constructor can be private. It can still be called within the class, or any enclosing class. This is common for things like singletons:
Private constructors are also used to prevent any instantiation, if you have a utility class which just has static methods. |
|||||||||||||||
|
|
1) NO! A constructor belongs to the class in which it is declared. A sub class is a different class and must have its own constructor. So, constructors simply can't be overridden. 2) Yes, that's done usually in case of singletons. |
|||
|
|
|
||||
|
|
|
no we cannt override an construtor, For implementing Singleton pattren we should have a private construtor. |
|||
|
|
|
try this : http://www.javabeginner.com/learn-java/java-constructors 1 -> No 2 -> yes |
|||
|
|
|
1) Is this just homework question, or do you try to reach something? Can you show what you try to reach with an overriding constructor? Since the parent constructor is called first, you may modify the base class to your needs in your constructor. Of course, just as far as the access to base attributes isn't private. If you extend a class but don't like their might-be-private attributes, deriving from it was an error. 2) Can a constructor be private? Yes, but do you know what it is good for? |
|||
|
|
|
|||
|
|
|
You can override a constructor in a derived class. Constructors can be private. |
|||||||||||||
|