10
可以說我有一個Dog類。 裏面我有一張地圖,其中一個值是Breed。Java流 - 將列表分類到列表的散列圖
public class Dog{
String id;
...
public map<String,String>
}
我想要得到地圖列表
HashMap<String, List<Dog>> // breed to a list<Dog>
使用流而不是迭代它的。
我該怎麼做?