Child 继承自 Parent,并且覆盖了method(),p.method()执行的是c的method(),如果c没有覆盖父类的method()则执行Parentd的method();因为静态方法不能继承,也不能覆盖,所有p.smethod()执行的是Parent的smethod(),我也学的不好,大概就是这么个意思吧