"Hello, Amigo! Yesterday you were schooled in the ways of abstract classes. Now it's time to deepen our knowledge. I want to teach you how to use abstract classes correctly."

It's difficult to come up with a real-world analogy for an abstract class. A class is usually a model of some entity. But an abstract class contains methods that have not been implemented, and can contain methods that have been implemented. What does that mean? What analogy for an abstract class can we find? Is there such a thing in the real world?

Actually, there is. Imagine the chassis of an almost finished car on a conveyor belt. I can install either a souped-up engine or a highly efficient engine. Either a leather interior or fabric upholstery. The car's specific implementation is not yet determined. What's more, the chassis could be used to produce several specific implementations. But nobody wants the car in its current form. This is a classic abstract class: creating instances of it wouldn't make sense, so you can't create them; the class only makes sense because of the many full-fledged heirs that will be created on its basis.

"That's easy enough."

But there can be even more abstract analogies. More like interfaces with a few implemented methods. For example, consider a professional interpreter. Without specifying the source and target languages, we have an «abstract translator». Or consider a bodyguard. We may know that he's mastered martial arts and can protect his client. But which martial arts and how he will protect the client are "implementation details" of each specific bodyguard.

Let's look at an example:

Java code Description
abstract class BodyGuard
{
 abstract void applyMartialArts(Attacker attacker);

 void shoot(Attacker attacker)
 {
    gun.shoot(attacker);
 }

 void saveClientLife(Attacker attacker)
 {
  if (attacker.hasGun())
     shoot(attacker);
  else
     applyMartialArts(attacker);
 }
}
The BodyGuard class determines how to deal with an attack: shoot or use martial arts.

However, the specific martial art is not specified, though we are certain that the skill exists.

We can create several different bodyguards (by inheriting this class). All of them will be able to protect the client and shoot the attacker.

undefined
3
Task
Java Core, level 3, lesson 3
Locked
Code entry
Your attention, please! Now recruiting code entry personnel for CodeGym. Turn up your focus, let your fingers relax, read the code, and then... type it into the appropriate box. Code entry is far from a useless exercise, though it might seem so at first glance: it allows a beginner to get used to and remember syntax (modern IDEs seldom make this possible).

"You're right. It's a lot like an interface with a few implemented methods."

"Yes, this type of abstract class is common among standard Java SE classes."