I i = new A();
クラスAのオブジェクトをインスタンス化するためにインタフェースIを使用できるのはなぜですか? obj = new A()を使ってはいけませんか?クラスのインスタンス化Java
interface I {
void f();
void g();
}
class A implements I {
public void f() { System.out.println("A: doing f()"); }
public void g() { System.out.println("A: doing g()"); }
}
class B implements I {
public void f() { System.out.println("B: doing f()"); }
public void g() { System.out.println("B: doing g()"); }
}
class C implements I {
// delegation
I i = new A();
public void f() { i.f(); }
public void g() { i.g(); }
// normal attributes
public void toA() { i = new A(); }
public void toB() { i = new B(); }
}
ありがとう!
質問/問題点を明確にすることはできますか? – beny23