35. Interface
An interface is a description of what member functions must a class, which inherits this interface, implement. In other words, an interface describes behavior of the class. You can imagine an interface as a list of functions that must be implemented by a class. An interface is created by using __interface keyword: __interface InterfaceName{ //group of functions… Read More »
