我創建一個SpringServiceImpl類的地方將安排名單內的總借方發生額。然而,我得到一個錯誤:The operator += is undefined for the argument type(s) List<GeneralLedgerEntity>, GeneralLedgerEntity
總和計算使用的ArrayList
List<GeneralLedgerEntity> calculateResult = new ArrayList<>();
for(GeneralLedgerEntity credit : calculateResult){
calculateResult += credit;
return calculateResult;
}
這應該是什麼選擇?
'calculateResult'是你的清單,我想你想有一個數值,這裏 – Jens
請更正你的問題,你不能爲一個ArrayList的做+ =。我想你已經忘記了Java,我不知道人們在假設和回答你的問題 –
你想做什麼?要麼計算一個總數,但是你還沒有創建一個數字變量來存儲總數,或者創建一個所有'GeneralLedgerEntity'的列表,但是你正在遍歷一個空列表。 –