为什么即使第一条语句是构造函数调用,我也会收到“this(10)”的此错误。我正在使用日食。
public class MaxIndependentSet {
private ArrayList<Integer> inputArr = new ArrayList<Integer>();
public void MaxIndependentSet(int size) {
inputArr.ensureCapacity(size);
}
public void MaxIndependentSet() {
this(10);
}
}