标签: java java-stream
我正在尝试使用流将Map<K,V>转换为Map<K, List<V>>。我有给定的Map<Integer, Double>条目,例如:{1, 10}, {-1, -2}, {0,0}, {1, 219}...
Map<K,V>
Map<K, List<V>>
Map<Integer, Double>
{1, 10}, {-1, -2}, {0,0}, {1, 219}...
键是地图中值的符号。我需要将其转换为Map<Integer, List<Double>>,其中:{1, { *all of the positive values}}, { -1, {....}...
Map<Integer, List<Double>>
{1, { *all of the positive values}}, { -1, {....}...
如何进行转换?