Java Interface -1
Java Interface -1
In this example, the Printable interface has only one method, and its implementation is provided in the A6 class.
interface printable{
void print(); }
obj.print();
}}
OUTPUT: Hello
MULTIPLE INHERITANCE IN JAVA BY INTERFACE