I understand the concept of multiple inheritance though i am trying to access the same method that were given in two interfaces . Example:-
interface Interface1{
int show();
void display();
}
interface Interface2 {
int show();
void display();
}
class Impl implements Interface1, Interface2 {
// how to override show() and display() methods such that
// i could access both the interfaces
}