132

Collectors.toSet()秩序を保ちません。代わりにリストを使用することもできますが、結果のコレクションでは要素の重複が許可されないことを示したいと思います。これは、まさにSetインターフェイスの目的です。

4

1 に答える 1

232

toCollection必要なセットの具体的なインスタンスを使用して提供できます。たとえば、広告掲載順を維持したい場合:

Set<MyClass> set = myStream.collect(Collectors.toCollection(LinkedHashSet::new));

例えば:

public class Test {    
    public static final void main(String[] args) {
        List<String> list = Arrays.asList("b", "c", "a");

        Set<String> linkedSet = 
            list.stream().collect(Collectors.toCollection(LinkedHashSet::new));

        Set<String> collectorToSet = 
            list.stream().collect(Collectors.toSet());

        System.out.println(linkedSet); //[b, c, a]
        System.out.println(collectorToSet); //[a, b, c]
    }
}
于 2014-12-22T23:25:05.813 に答える