当两个类实现相同的接口时

时间:2013-04-09 16:08:44

标签: java interface

假设有2个类实现了相同的接口和该接口的方法。如果我直接从接口调用方法,那么决定返回哪个实现(从第一类或第二类)是什么?

4 个答案:

答案 0 :(得分:8)

您不直接从接口调用方法,而是在指向类实例的引用上调用它。无论哪个类决定调用哪个方法。

答案 1 :(得分:7)

package test;
    public interface InterfaceX {
    int doubleInt(int i);
}

package test;
public class ClassA implements InterfaceX{
    @Override
    public int doubleInt(int i) {
        return i+i;
    }
}

package test;
public class ClassB implements InterfaceX{
    @Override
    public int doubleInt(int i) {
        return 2*i;
    }
}

package test;
public class TestInterface {
    public static void main(String... args) {
        new TestInterface();
    }
    public TestInterface() {
        InterfaceX i1 = new ClassA();
        InterfaceX i2 = new ClassB();
        System.out.println("i1 is class "+i1.getClass().getName());
        System.out.println("i2 is class "+i2.getClass().getName());
    }
}

答案 2 :(得分:2)

通过执行实现接口的具体类的构造函数来定义接口的实例。

Interface interface = new ConcreteClass();

答案 3 :(得分:0)

接口不能具有该方法的主体/定义。所有方法都是抽象的。您无法定义方法体,因此无法从接口调用任何方法。