Newer
Older
POS_for_GUI / src / resources / Total.java
fujii kouta on 25 Apr 2022 283 bytes バグの修正とリファクタリング.
package resources;

import java.util.List;

public class Total {
	private int value;
	public void updateHistory(List<Integer> history) {
		Integer temp_sum1 = 0;
		for (Integer x: history) {
			temp_sum1 += x;
		}
		value = temp_sum1;
	}
	public int getValue() {
		return value;
	}
}