Re: interface extend an abstract class
Posted By:
Bozidar_Dangubic
Posted On:
Friday, April 19, 2002 04:31 AM
interface cannot extend abstract class or any class since it is a interface. interface can only extend another interface. abstract class also cannot extend an interface but in can declare that it implements a certain interface. no problem with that.