inittest18.java
来自「JAVA编程思想第四版英文原版习题答案. pdf原版的」· Java 代码 · 共 23 行
JAVA
23 行
// 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 + =
减小字号Ctrl + -
显示快捷键?