Abstract classes are classes in Java that contain abstract methods which let children classes provide the implementation. Defining abstract classes is useful for when you want different implementation for the same method.
Creating an Abstract Class
Let's say we are trying to get from point A to point B. This is represented by our abstract class Transportation.java:
Our classes Train and Car extend our abstract class Transportation, which forced both of them to provide an implementation for the travel() abstract method.
This right here is the power of abstract classes. Their job is just to define a contract, and any class that extends it agrees to that contract. In this case, the contract is that if you want to be a mode of transportation, you must be able to travel. Both Train and Car implemented that method and thus became valid types of transportation.