| Author |
constructors...
|
eswar kumar
Ranch Hand
Joined: Oct 20, 2002
Posts: 98
|
|
|
Can we use constructors in servlets?
|
 |
Avi Abrami
Ranch Hand
Joined: Oct 11, 2000
Posts: 1112
|
|
Yes, as long as they have no arguments. Good Luck, Avi.
|
 |
Mathews P Srampikal
Ranch Hand
Joined: Nov 26, 2002
Posts: 211
|
|
|
what is the use of constructor without arguments.....what will happen if there is an argument constructor???
|
Thanks,
Mathews
|
 |
Varun Khanna
Ranch Hand
Joined: May 30, 2002
Posts: 1400
|
|
Originally posted by Mathews P Srampikal: what is the use of constructor without arguments.....what will happen if there is an argument constructor???
In the earlier java specification, for the instances which were to be loaded by a class loader, the inclusion of a constructor with an arguement was not supported.And servlets were/are loaded by a class loader. But IMO, this should hold true only in the case you have provided "only" an arguement constructor, what if you have provided a default no arguement constructor as well? as then class loader can load the instance easily. [ November 19, 2003: Message edited by: V�r�n Kha�n� ]
|
- Varun
|
 |
 |
|
|
subject: constructors...
|
|
|