Data abstraction involves concealing specific details while presenting only crucial information to the user.
This abstraction can be realized through either abstract classes or interfaces, topics that will be explored further in the upcoming chapter.
The abstract keyword, a non-access modifier, is employed with classes and methods.
An abstract class is capable of containing both abstract and regular methods.
abstract
}
|
As illustrated in the example above, creating an object of the Animal class is not feasible.
Animal |
In order to access the abstract class, it must be inherited from another class. Let’s transform the Animal class we utilized in the Polymorphism chapter into an abstract class.
Remember from the Inheritance chapter that we use the extends keyword to inherit from a class. |
// Abstract class }
|
Why And When To Use Abstract Classes and Methods?For security purposes, abstraction involves concealing specific details and revealing only the essential aspects of an object. Note: Abstraction can also be accomplished through Interfaces, a concept that will be further explored in the following chapter. |