Java
Programming and Technical
What are abstract classes?
Read Solution (Total 1)
-
- Abstract classes are classes that contain one or more abstract methods. An abstract method is a method that is declared, but contains no implementation. Abstract classes may not be instantiated, and require subclasses to provide implementations for the abstract methods.
- 7 years agoHelpfull: Yes(1) No(0)
Java Other Question