| |
|
What is an abstract class?
If a class is to serve the purpose of providing common fields and members to all subclasses,
we create an Abstract class. For creating an abstract class, we make use of the abstract keyword.
Such a class cannot be instantiated.
Click here to know more about Abstract Class
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| |