5

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

4

4 回答 4

9
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());
    }
}
于 2013-04-09T16:25:18.967 回答
8

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

于 2013-04-09T16:10:48.187 回答
2

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

Interface interface = new ConcreteClass();
于 2013-04-09T16:13:03.590 回答
0

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

于 2013-04-09T16:11:14.253 回答