Abstract classes

can all classes inherit Abstract class....or is there any restriction that only one class can inherit abstract class
[123 byte] By [mikkua] at [2007-10-3 11:37:20]
# 1
For a given abstract class, you can have multiple subclasses if you so wish.Those subclasses can themselves be abstract, if you so wish.Does that answer your question?
paulcwa at 2007-7-15 14:05:42 > top of Java-index,Java Essentials,New To Java...
# 2
Not all classes can inherit Abstract class. If a class is already extending some other class then it cannot inherit abstract class
SidGatea at 2007-7-15 14:05:42 > top of Java-index,Java Essentials,New To Java...
# 3
An interface says what an object has to do.A class says how to do it. The class might be abstract, which means that it only says how to do some of it -- a subclass then has to say how to do the rest.
paulcwa at 2007-7-15 14:05:42 > top of Java-index,Java Essentials,New To Java...