November 2019
Beginner
228 pages
2h 45m
English
The concept of interface is a part of abstraction, one of the four OOP. characteristics. Abstraction is about an abstract design of common features, including operations of the object.
Interface is the blueprint of a class. However, it is neither a class nor an object. All methods defined in an interface are abstract. There are no implementation details allowed inside any method of the interface. The class that is going to implement the interface will take care of the actual implementation of the methods.
Read now
Unlock full access