using inheritance in java code example
Example: Inheritance in java
// Multiple inheritance in java
interface M
{
public void helloWorld();
}
interface N
{
public void helloWorld();
}
// implementing interfaces
public class MultipleInheritanceExample implements M, N
{
public void helloWorld()
{
System.out.println("helloWorld() method");
}
public static void main(String[] args)
{
MultipleInheritanceExample obj = new MultipleInheritanceExample();
obj.helloWorld();
}
}