inittest17.java

来自「java编程思想第四版习题答案」· Java 代码 · 共 23 行

JAVA
23
字号
// initialization/InitTest17.java
// TIJ4 Chapter Initialization, Exercise 17, page 198
/* Create a class with a constructor that takes a String argument. During
* constriction, print the argument. Create and array of object references to this
* class, but don't actually create objects to assign into the array. When you run
* the program, notice whether the initialization messages from the constructor
* are printed.
*/

class InitTest {
	InitTest(String s) {
		System.out.println("InitTest()");
		System.out.println(s);
	}
}

public class InitTest17 {
	public static void main(String[] args) {
		InitTest[] it = new InitTest[10];
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?