我試圖使用另一個名爲Digits的類中的方法,但是在名爲FourDigits的類中引用它。我試着用下面的代碼創建一個實例變量:Java - 找不到符號 - 構造函數
public class FourDigits
private Digits TwoDigitA;
private Digits TwoDigitB;
/**
* Constructor for objects of class FourDigits
*/
public FourDigits()
{
TwoDigitA = new Digits();
TwoDigitB = new Digits();
setValues();
setIncrement();
getDisplayString();
}
第一類,位數:
public class Digits
private int value;
private int tooHigh;
private String displayString;
public Digits(int anyNum)
{
value = 0;
tooHigh=anyNum;
displayString = "";
}
謝謝!
非常感謝!它的工作 – tekman22 2011-03-24 19:03:49
沒問題,很高興我可以幫助 – sharpner 2011-03-24 19:04:25
@ jtm22不要忘記把sharpner的答案標記爲「正確」。 – 2011-03-24 19:20:59