Abstract Class in Java Notes
Abstract Class in Java Notes
For
example, when you consider the case of e-mail, complex details such as what happens as soon as
you send an e-mail, the protocol your e-mail server uses are hidden from the user. Therefore, to
send an e-mail you just need to type the content, mention the address of the receiver, and click
send.
Abstract Class
A class which contains the abstract keyword in its declaration is known as abstract class.
Abstract classes may or may not contain abstract methods, i.e., methods without body (
public void get(); )
But, if a class has at least one abstract method, then the class must be declared abstract.
If a class is declared abstract, it cannot be instantiated.
To use an abstract class, you have to inherit it from another class, provide
implementations to the abstract methods in it.
If you inherit an abstract class, you have to provide implementations to all the abstract
methods in it.
Example
This section provides you an example of the abstract class. To create an abstract class, just use
the abstract keyword before the class keyword, in the class declaration.
Now you can try to instantiate the Employee class in the following way −
When you compile the above class, it gives you the following error −
Example
/* File name : Salary.java */
public class Salary extends Employee {
private double salary; // Annual salary
Here, you cannot instantiate the Employee class, but you can instantiate the Salary Class, and
using this instance you can access all the three fields and seven methods of Employee class as
shown below.
Output
Constructing an Employee
Constructing an Employee
Call mailCheck using Salary reference --
Within mailCheck of Salary class
Mailing check to Mohd Mohtashim with salary 3600.0
Abstract Methods
If you want a class to contain a particular method but you want the actual implementation of that
method to be determined by child classes, you can declare the method in the parent class as an
abstract.
Example
public abstract class Employee {
private String name;
private String address;
private int number;
Note − Eventually, a descendant class has to implement the abstract method; otherwise, you
would have a hierarchy of abstract classes that cannot be instantiated.
Suppose Salary class inherits the Employee class, then it should implement the computePay()
method as shown below −