Goodday大家,類型表達的必須是一個數組類型,但它解析爲「溫度」 -Java
所以,我提出的一類的溫度,這有一個構造,使溫度。溫度是一個由2個數字組成的數組[寒冷,熱度]。
public int hotness;
public int coldness;
public int[] temperature;
public int maxTemperature = 10000;
//Constructor Temperature
public Temperature(int hotness, int coldness) {
/**
* A constructor for the Array Temperature
*/
maxTemperature = getMaxTemperature();
if(hotness <= maxTemperature && coldness <= maxTemperature)
temperature[0] = coldness;
temperature[1] = hotness;
}
現在我想進入另一個類並使用該對象溫度來做一些計算。這是它的代碼。
//Variabels
public int volatility;
private static Temperature temperature;
private static int intrensicExplosivity;
public static int standardVolatility(){
if(temperature[0] == 0){
int standardVolatility = 100 * intrensicExplosivity * (0.10 * temperature[1]);
}
所以現在我得到的錯誤:類型的表達式必須是一個數組類型,但它決心「溫度」
任何解決方案?
我對Java很新,所以可能只是一些synthax錯誤,但我找不到它。
在此先感謝。 大衛
對象如果有錯誤,請張貼異常或錯誤,請的堆棧跟蹤。 – Crazenezz