Hi This was the question asked in interview. Can we call one constructor from another if a class has multiple constructors in java and when?How can I call I mean syntax?
|
|
You can, and the syntax I know is
You can also call a super class' constructor through
Both such calls can only be done as the first statement in the constructor (so you can only call one other constructor, and before anything else is done). |
|||||||
|
|
Yes, you can do that. Have a look at the
The second constructor calls the first one with a |
|||
|
|
|
|||||||||
|
|
FYI, this is called the telescoping/telescopic constructor pattern. It's discussed in JLS 8.8.7.1 Explicit Constructor Invokations
|
|||
|
|
|
None of the answers are complete, so I'm adding this one to fill in the blanks. You can call one constructor from another in the same class, or call the super class, with the following restrictions:
The syntax (as mentioned by others) is:
|
||||
|
|
|
example:
|
||||
|
|