给出如下类定义:public class test {test(int k) { }}如果要创建一个该类的对象,正确的语句是:
举一反三
- 中国大学MOOC: 给出如下类定义: public class Test { Test(int i) { } } 如果要创建一个该类的对象,正确的语句是( )。
- 给出如下类定义: 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();
- 给出如下类定义: 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);
- 考虑如下类:public class Test {int j,k;publ...}}以下哪些可正确创建Test对象?
- 设有泛型类的定义如下 class Test { } 则由该类创建对象时,使用正确的是?