⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inittest18.java

📁 Thinking in Java第四版 课后习题的源码
💻 JAVA
字号:
// initialization/InitTest18.java
// TIJ4 Chapter Initialization, Exercise 18, page 198
/* Attach objects to the references in array in exercise 17: 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 InitTest18 {
	public static void main(String[] args) {
		InitTest[] it = new InitTest[5];
		for(int i = 0; i < it.length; i++)
			it[i] = new InitTest(Integer.toString(i));
	}
}

⌨️ 快捷键说明

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