Theory:Abstract class
Sometimes you have a set of fields and methods that you need to reuse in all classes within a hierarchy. It is possible to put all the common members to a special base class and then declare subclasses which can access these members. At the same time, you do not need to create objects of the base class. To achieve it, you can use an abstract class as the base class in the hierarchy.
# What is an abstract class?
An abstract class is a class declared with the keyword abstract
. It represents an abstract concept that is used as a base class for subclasses.
Abstract classes have some special features:
- it's impossible to create an instance of an abstract class;
- an abstract class can contain abstract methods that must be implemented in non-abstract subclasses;
- it can contain fields and non-abstract methods (including static);
- an abstract class can extend another class, including abstract;
- it can contain a constructor.
As you can see, an abstract class has two main differences from regular (concrete) classes: no instances and abstract methods.
注意
Abstract methods are declared by adding the keyword abstract
. They have a declaration (modifiers, a return type, and a signature) but don't have an implementation. Each concrete (non-abstract) subclass must implement these methods.
提示
Note, static methods can't be abstract!
# Example
Here is an abstract class Pet
:
public abstract class Pet {
protected String name;
protected int age;
protected Pet(String name, int age) {
this.name = name;
this.age = age;
}
public abstract void say(); // an abstract method
}
2
3
4
5
6
7
8
9
10
11
12
The class has two fields, a constructor, and an abstract method.
Since Pet
is an abstract class we cannot create instances of this class:
Pet pet = new Pet("Unnamed", 5); // this throws a compile time error
The method say()
is declared abstract because, at this level of abstraction, its implementation is unknown. Concrete subclasses of the class Pet
should have an implementation of this method.
Below are two concrete subclasses of Pet
. You can see that they override the abstract method:
class Cat extends Pet {
// It can have additional fields as well
public Cat(String name, int age) {
super(name, age);
}
@Override
public void say() {
System.out.println("Meow!");
}
}
class Dog extends Pet {
// It can have additional fields as well
public Dog(String name, int age) {
super(name, age);
}
@Override
public void say() {
System.out.println("Woof!");
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
We can create instances of these classes and call the say()
method.
Dog dog = new Dog("Boss", 5);
Cat cat = new Cat("Tiger", 2);
dog.say(); // it prints "Woof!"
cat.say(); // it prints "Meow!"
2
3
4
5
Do not forget that Java doesn't support multiple inheritance for classes. Therefore, a class can extend only one abstract class.