现有: <br /> class Cat { <br /> Cat(int c) { System.out.print("cat" + c + " "); } <br /> } <br /> class SubCat extends Cat { <br /> SubCat(int c) { super(5); System.out.print("cable "); } <br /> SubCat() { this(4); } <br /> public static void main(String [] args) { <br /> SubCat s = new SubCat(); <br /> } <br /> }<br /> 结果为:() <p> 现有: <br /> class Cat { <br /> Cat(int c) { System.out.print("cat" + c + " "); } <br /> } <br /> class SubCat extends Cat { <br /> SubCat(int c) { super(5); System.out.print("cable "); } <br /> SubCat() { this(4); } <br /> public&
A、A.cat5
B、B.cable
C、C.cable cat5
D、D.cat5 cable