已知下面的类:class Test {int a;Test (int i) { a = i; }编写一个名为swap()的方法来交换两个Test对象引用所引用对象的内容。
举一反三
- 有一个类Test,下面为其构造方法的声明,正确的是( )。 A: void Test(int i){} B: test(int i){} C: void test(int i){} D: Test(int i){}
- 中国大学MOOC: 如下所示的Test类的Java程序中,共有几个构造方法()。 public class Test{ private int x; public Test(){} public void Test(int i){ this.x=i; } public Test(String str){} }
- 中国大学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);
- 如下代码定义了一个类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);