wip0、wip1、... wip26など、「i」が異なる変数がいくつかあります。それぞれが整数のコレクションです。これはおそらく非常に簡単ですが、答えが見つかりません。
特定の変数を更新する関数を作成するにはどうすればよいですか?
特定の変数を更新する関数がありますが、27 個の関数を作成したくありません。
今私が持っています:
updateWip(int type, int quantity){
int temp;
temp = wip.get(type);
temp = temp + quantity;
wip.set(materialType, temp);
}
次のようなものが必要になります。
updateWip(int type, int quantity, int station)