例如,A a = new A(); B b = new B(); A x = new B();
这种情况下x只能调用A的方法,而不能调用B特有的方法,那为什么不直接用
A a = new A();呢?