我有以下代碼可執行以下操作: - 它需要溫度和通道索引,並搜索對象列表(包含溫度數組),並返回對象的索引,其中溫度被發現。 我想這個方法結束時,找到的第一個,因爲這是在其達到該溫度的最早時間(它登陸)JavaFX:缺少返回語句
public int findRow(double targetTemperature, int ch)
{
//This method takes a double and finds it in the List, it then returns the element in which it is (the row)
//The element returned can be used with duration.between to find the response time between 2 known values
for (int i=0; i < readings.size(); i++)
{
double compareTemp = readings.get(i).getValue(ch);
if (compareTemp > targetTemperature)
{
System.out.println(readings.get(i).getTimestamp() + "is above target temp for channel " + ch);
return i;
}
else
{
System.out.println(readings.get(i).getTimestamp() + "Is not above target temp for channel " + ch);
return 0;
}
}
}
列表中包含TemperatureReadings這是我創建了一個類有兩個變量:
- 值雙打數組
- 帶currentime的時間戳(當創建數組時)
我試圖找到每個通道的響應時間。但是,當我運行上面的代碼時,它表示「沒有返回語句」,即使這兩個選項都有返回語句(if/else)
或者如果您可以幫助我找出一個更好的方法來找到第一個存在列出該頻道(陣列指數)的溫度達到X度的地方,我真的很感激它。
其實我不希望如果可能的話,返回0返回錯誤或某事說「不溫發現」或類似的東西
不正確:在沒有找到元素的情況下返回0,並且在第一個元素符合條件的情況下返回0。 – DVarga
這是正確的,更新謝謝! – AndyB