问题描述 伪代码如下 a.B( ).C( )是什么意思? 伪代码如下 a.B( ).C( )是什么意思? 我知道new D( ).E( )表示类D的对象d调用E方法 解决方案 public class Main { public static void main(String[] args) { A a=new A(); a.B().C(); } } class A{ public A B(){ return new A(); } public String C(){ return "1111&
问题描述 Java调用一个不存在的方法 请各位大神帮我解释一个问题,先看代码,谢谢! abstract class Base{ abstract public void myfunc(); public void another(){ System.out.println(""Another method""); } } public class Abs extends Base{ public static void main(String[] args){ Ab