给出如下类定义: 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);
A: Test t = newTest();
B: Test t = newTest(5);
C: Test t = newTest("5");
D: Test t = newTest(3.4);
举一反三
- 给出如下类定义: 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();
- 假设有类Test下列可以正确创建对象的格式是() A: Testt=1; B: Testt=newtest(); C: Testt=newtest; D: Testt=test();
- 如下代码定义了一个类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);
- 给出如下类定义:public class test {test(int k) { }}如果要创建一个该类的对象,正确的语句是:
- 中国大学MOOC: 给出如下类定义: public class Test { Test(int i) { } } 如果要创建一个该类的对象,正确的语句是( )。