Interfaces
Let's learn about interfaces.
We'll cover the following...
What is an interface
?
An interface
behaves as a contract between itself and any class where it’s used. A class that implements an interface must now implement all its members. These interfaces
are usually named with a capital I
, though it isn’t ...