📄 test136.java
字号:
class Test136 {
String title;
int value;
public Test136() {
title += "world";
}
public Test136(int value) {
this();
this.value = value;
title = "Hello";
// Test136();
}
public static void main(String[] args) {
Test136 c = new Test136(5);
System.out.println(c.title);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -