我有一个像这样的数组:
int[] array_example = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
Long count_array = Arrays.stream(array_example)
.filter(x -> x>5)
.count();
和类似的二维数组:
int[][] matrix_example = {{0, 1, 2, 3, 4}, {5, 6, 7, 8, 9}};
Long count_matrix = 0L;
for(int[] temp: matrix_example){
for(int x_y: temp){
if(x_y > 5)
count_matrix++;
}
}
如何获取大于等于Java 8或更高矩阵的x的元素数量?
答案 0 :(得分:3)
您可以使用flatMapToInt
创建矩阵的IntStream
,然后像之前一样使用filter
和count
:
Long count_matrix = Arrays.stream(matrix_example) // Stream<int[]>
.flatMapToInt(Arrays::stream) // IntStream
.filter(x_y -> x_y > 5) // filtered as per your 'if'
.count(); // count of such elements
答案 1 :(得分:1)
这是解决问题的一种方法:
long count = Arrays.stream(matrix_example)
.mapToLong(a -> Arrays.stream(a).filter(x -> x > 5).count()).sum();
matrix_example
从Arrays.stream
创建一个流5
将每个数组映射到给定元素大于mapToLong
的次数sum