Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
`Map から整数配列の長さを抽出するにはどうすればよいですか?
Map <Integer, ArrayList<Integer>> res = function() ; for (Map.Entry entry : res.entrySet()) { System.out.println(entry.getValue()); }
やってもうまくいきSystem.out.println(entry.getValue().size());ません。
System.out.println(entry.getValue().size());
の型引数を指定する必要がありますEntry。
Entry
for(Map.Entry<Integer, ArrayList<Integer>> entry : res.entrySet()){
それ以外の場合、型の使用法はrawです。
見る