私は障害にぶつかり、私の仕事に関する質問に行き詰まりました。
質問は次のとおりです。
項目リスト内の項目の個々の重みを合計して合計を返す getLoad メソッドの実装を提供します。
アイテムリストは次のとおりです。
ArrayList<Item> items;
私は正しいと思ったことをしましたが、何らかの理由で機能しません。
何が間違っているか、または私がしていることが間違っている場合、何か助けはありますか? ありがとう
@Override
public int getLoad() {
int load = 0; //declare the variable
for (Item i : items) { // for each item in the list of items
load = load + i.getWeight() ; // load equals the weight of the item and adds on
}
return load; //returns it
}