在下面代码中,在插入代码处插入什么语句可以实现在A中的amethod()方法中直接调用类C的test()方法,而不需要创建一个类C的实例?()
A: test()
B: super.test()
C: super.super.test()
D: 不能实现该要求
A: test()
B: super.test()
C: super.super.test()
D: 不能实现该要求
举一反三
- 对于下面代码,表述正确的是() interface A{ public default void test(int a){ System.out.println(a); } public static void test1(int a){ System.out.println(a); } } A: 语法错误,test方法不允许定义方法体 B: A接口的实现类的实例可以调用test方法 C: A接口的实现类的实例可以调用test1方法 D: 可以通过A接口调用test1方法
- 如何从TypeScript中的子类调用基类构造函数?() A: super() B: supe() C: supers() D: test()
- ()命令可以切换到test用户登录。 A: super–test B: passwdtest C: sutest D: lstest
- 如果使用Thread t=new Test()语句创建一个线程,则下列叙述正确的是 A: Test类一定要实现Runnable接口 B: Test类一定是Thread类的子类 C: Test类一定是Runnable类的子类 D: Test类一定是继承Thread类,并且实现Runnable接口
- 如下代码定义了一个类Test: class Test { private int y; Test (int x) { y:x; } }现在为Test 类生成一个对象,正确的语句是( )。 A: Test t = new Test( ); B: Test t=new Test(10, 20); C: Test t; D: Test t=new Test(10);