Glossaria.net

Glossary Java / Term

abstract class

A class that contains one or more abstract methods , and therefore can never be instantiated. Abstract classes are defined so that other classes can extend them and make them concrete by implementing the abstract methods.

An abstract class can have abstract methods that are not implemented in the abstract class, but in subclasses.

Permanent link abstract class - Creation date 2022-01-03


< abstract Glossary / Java abstract method >