Hi,
Yes you can have constructors in abstract class..
but you cant instantiate the abstract class....
Ex: AbstractClassA ab=new AbstractClassA();
where AbstractClassA is an abstract class.
But you cant have constructor in interface..
hope you got it...
[ September 29, 2005: Message edited by: A Kumar ]