设有泛型类的定义如下 class Test { } 则由该类创建对象时,使用正确的是?
Test x = new Test();
举一反三
- 设有泛型类的定义如下class Test; { }则由该类创建对象时,使用正确的是? A: Test; x = new Test;(); B: Test x = new Test(); C: Test; x = new Test;(); D: Test; x = new Test;();
- 设有泛型类的定义如下class Test<T> { }则由该类创建对象时,使用正确的是? A: Test x = new Test();<table width="77" cellspacing="0" cellpadding="0"><colgroup><tbody><tr class="firstRow">数据添加到文件中; B: Test<int> x = new Test<int>(); C: Test<Object> x = new Test<Object>(); D: Test<T> x = new Test<T>();
- 给出如下类定义:public class test {test(int k) { }}如果要创建一个该类的对象,正确的语句是:
- 中国大学MOOC: 给出如下类定义: public class Test { Test(int i) { } } 如果要创建一个该类的对象,正确的语句是( )。
- 给出如下类定义: public class Test { Test(int i) { } } 如果要创建一个该类的对象,正确的语句是( )。 A: Test t = newTest(); B: Test t = newTest(5); C: Test t = newTest("5"); D: Test t = newTest(3.4);
内容
- 0
给出如下类定义: public class test { test(int k) { } }如果要创建一个该类的对象,正确的语句是: A: test obj1 = new test('5 '); B: test obj1 = new test(5); C: test obj1 = new test(3.4); D: test obj1 = new test();
- 1
考虑如下类:public class Test {int j,k;publ...}}以下哪些可正确创建Test对象?
- 2
类test的定义如下,$x是类test的对象,则4个选项中,正确的是( )。class test{const no='110';}$x=new test( ); A: echo $x.no; B: echo $x->no; C: echo test->no; D: echo test::no;
- 3
如下TestA类的定义: public class TestA { static int a=10; } 用该类创建2个对象:testA1和testA2,现将类变量(静态变量)a的数值变为100,则正确的方式是:( )。
- 4
设有下面的一个类定义: class AA { static void Show { System.out.println(“我喜欢Java!”); } } class BB { void Show { System.out.println(“我喜欢C++!”); } } 若已经使用AA类创建对象a和BB类创建对象b,则下面方法调用是正确的