duplicationsample.java
来自「< ProJavaProgrammingSecondEdition>」· Java 代码 · 共 19 行
JAVA
19 行
public class DuplicationSample {
protected int firstValue;
protected String secondValue;
protected Integer thirdValue;
public DuplicationSample(int first, String second, Integer third) {
firstValue = first;
secondValue = second;
thirdValue = third;
}
public DuplicationSample(int first, String second) {
this(first, second, new Integer(0));
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?