duplicationsample.java

来自「主要是java书上的一些代码」· Java 代码 · 共 23 行

JAVA
23
字号
//: DuplicationSample.java

//package g3ds.joop.ch5;

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) {
		firstValue = first;
		secondValue = second;
		thirdValue = new Integer(0);
		
		//this(first, second, new Integer(0));
	}
}

⌨️ 快捷键说明

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