How to find the first element that is bigger than N from a list using stream in Java

1 Answer

0 votes
import java.util.*; 

public class MyClass {
    public static void main(String args[]) {
        List<Integer> list = Arrays.asList(2, 5, 6, 8, 9);
        
        int n = list.stream()
                    .filter(x -> x > 6)
                    .findFirst()
                    .get();
                    
        System.out.println(n);
    }
}



/*
run:

8

*/

 



answered Oct 3, 2019 by avibootz
...