赞
踩
1、this super 均是隐式参数,即:
Animal ani =new Animal(); ani.cry("猫","213");//其中猫和213是显式参数 ... .. . this.cry(); //this 是隐式参数
2、this 永远指向正在初始化的对象,或者正在调用方法的对象。 super 指向当前类的父类,相对而言是不变的