| Author |
Calling constructor twice?
|
shaf maff
Ranch Hand
Joined: Sep 07, 2008
Posts: 180
|
|
Hi Guys
Is it possible to call a constructor twice? For example:
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56532
|
|
Please take the time to choose the correct forum for your posts. This forum is for questions on Servlets.
For more information, please read this.
This post has been moved to a more appropriate forum.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32833
|
|
You can call a constructor twice, if it is overloaded. This is how you might do it with a Clock, which is more-or-less the same as an example in the Deitel and Deitel books.Flesh out that class, set up a class with a main method, and try it out.
I hope that answers your question. If you use the keyword this with () like that, it must be the first statement in the constructor.
As far as I know you cannot invoke a constructor on an already-extant object, as you seem to be doing. Nor can you call an object "class," because "class" is a keyword.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32833
|
|
myself wrote:Flesh out that class, set up a class with a main method, and try it out.
Then find my spelling errors and correct them!
|
 |
 |
|
|
subject: Calling constructor twice?
|
|
|