我有两个Java类:B,它扩展了另一个类A,如下所示: class A { public void myMethod() { /* ... */ } } class B extends A { public void myMethod() { /* Another code */ } } 我想打电话A.myMethod()给B.myMethod()。我来自C ++界,我不知道如何用Java做这个基本的事情。
采取以下措施: class A {} class B : A {} class C { C() { var b = new B(); Foo(b); Foo2(ref b); // <= compile-time error: // "The 'ref' argument doesn't match the parameter type" } void Foo(A a) {} void Foo2(ref A a) {} } 为什么会出现上述编译时错误?ref和out参数都会发生这种情况。