class A extends B{void methodInA{C c = new C();c.methodInC();//如果用到的方法是非静态的C.staticInC();//静态方法直接通过类名调用}}