interface A{public abstract void show();
}interface B{public abstract int show();
}public class Test implements A, B{public void show(){System.out.println("A show!");}/*只写 void show()出现的问题:Test不是抽象的, 并且未覆盖B中的抽象方法show();*/public int show(){System.out.println("B show");}/*当int show 方法写了出现的问题:错误: 已在类 Test中定义了方法 show()。 也就是这两个show()方法在Test中是歧义的!*/public static void main(String[] args){}
}