0

我有 -

class A {
    // contains certain set() and get() methods
}

class B extends A {
    public A getAotherMethod() {
      A a = new A();
      // Contains some logic
      return a
      }
}

class C extends B {
    // contains certain set() and get() methods
}

class D {
    public Object getMethod() {

      B b = new B();
      // Contains some logic
      return b.getAnotherMethod()
     }
}


public static void main(String[] args) {
    A a = new A();
    B b = new B();
    C c = new C();
    D d = new D();
    c = (C) d.getMethod(); // This is giving me ClassCastException
}
4

1 回答 1

6
d.getMethod();

这将在内部调用b.getAnotherMethod(),它有

A a = new A();
// Contains some logic
return a

A 类的对象不能转换为C 类

我们可以将子类对象分配给 超类引用,但我们不能将超类对象分配给子类引用,在这种情况下您所做的是。

于 2012-04-04T06:45:06.483 回答