Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 351 Bytes

abstract-class.md

File metadata and controls

7 lines (4 loc) · 351 Bytes

Abstract Class

A Class which main purpose is to define common interface for its subclasses.

An Abstract Class will defer some or all of its implementations to operations defined in subclasses, hence an Abstract Class cannot be instantiated.

The operations that an abstract class declares but doesn't implement are called abstract operations.