Map<Integer, List<List<Integer>>> map = new HashMap<>();
int key = 8;
int index = 0;
int sum = map.get(key).stream().mapToInt(internalList -> internalList.get(index)).sum();
对于你来说,它应该是这样的。
int total = value.stream().mapToInt(internalList-> internalList.get(index)).sum();
1条答案
按热度按时间gjmwrych1#
您可以使用Java 8流API来迭代外部列表,并从内部列表中获取特定的索引。然后使用mapToInt和sum函数检索所需的输出。
对于你来说,它应该是这样的。