我在做,它的基本代碼如下的程序:Java:如何在同一個類的另一個方法中調用一個類的方法?
公共類StatisticalList擴展的ArrayList {
public double getMinimumValue() {...} public double getMaximumValue() {...} public double range(){ double range = StatisticalList.getMaximumValue() - StatisticalList.getMinimumValue(); return range; }
在這我已經實現了兩個方法,getMinimumValue和getMaximumValue。接下來我想實現一個方法getRange。看起來很容易,不要再次進行計算,只需調用get__Value()方法即可。
但是,這給了錯誤的方法maxValue()未定義的類型ArrayList。我想在我的程序中需要多次使用其他方法中的方法時進行這種計算。我如何得到這個工作?
由於方法不是靜態的,您可以直接調用它們,例如'getMaximumValue()' –