📄 inittest17.java
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -