4
ストリームでCollections.toMap()を使用するときに、リストの反復順序を維持するにはどうすればよいですか?
私は次のようにMapからを作成してListいます: List<String> strings = Arrays.asList("a", "bb", "ccc"); Map<String, Integer> map = strings.stream() .collect(Collectors.toMap(Function.identity(), String::length)); と同じ反復順序を維持したいと思いListます。メソッドLinkedHashMapを使用してを作成するにはどうすればよいCollectors.toMap()ですか?