试题详情
- 单项选择题 现有: class Cat { Cat(int c) { System.out.print("cat" + c + " "); } } class SubCat extends Cat { SubCat(int c) { super(5); System.out.print("cable "); } SubCat() { this(4); } public static void main(String [] args) { SubCat s = new SubCat(); } } 结果为:()
A、cat5
B、cable
C、cable cat5
D、cat5 cable
- D
关注下方微信公众号,在线模考后查看
热门试题
- void waitForSi
- 在Java中,关于HashMap类的描述
- class TestRefe
- 求在1,2,3,...,100中,任选两
- 下面哪些main方法可用于程序执行()
- 如何定义静态方法?静态方法有何特点?静态
- class Account&
- Java语言中异常的分类是哪项?()
- 局部内部类可以访问所在类的数据字段
- Given: Intege
- import java.ut
- 考虑下面这个简单的例子,让我们看看ref
- 有一堆零件(零件个数不超过1000),如
- 下面有关 JAVA
- 用main()创建一个类,令其抛出try
- int i =&e
- Given the&ensp
- 编写一个字符界面的JavaApplica
- Which two̳
- 父类型的变量可以引用子类型的对象