27 Haziran 2021 Pazar

Stream.toList metodu

Giriş
Java 16 ile geliyor. Unmodifiable bir liste döndürür. Açıklaması şöyle.
The name toList is not intention revealing by itself. Naming the method toUnmodifiableList would have made it consistent with the same method on Collectors.
Örnek 
Şöyle yaparız
List<Integer> evenNos = nos.stream()
  .filter(i -> i % 2 == 0)
  .toList(); 
  //.collect(Collectors.toList())  
System.out.println("Even numbers : "+evenNos);

Hiç yorum yok:

Yorum Gönder