当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java IntStream sorted()用法及代码示例


IntStream sorted()以排序顺序返回包含此流的元素的流。这是有状态的中间操作,即在处理新元素时,它可以合并先前看到的元素的状态。有状态的中间操作可能需要在产生结果之前处理整个输入。例如,在查看流的所有元素之前,不能对流进行排序而产生任何结果。

用法:

IntStream sorted()

Where, IntStream is a sequence of primitive int-valued 
elements. This is the int primitive specialization of Stream.

异常:如果此流的元素不可比较,则在执行终端操作时可能会引发java.lang.ClassCastException。


返回值:IntStream sorted()方法返回新流。

范例1:使用IntStream sorted()对给定IntStream中的数字进行排序。

// Java code to sort IntStream 
// using IntStream.sorted() 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an IntStream 
        IntStream stream = IntStream.of(10, 9, 8, 7, 6); 
  
        // displaying the stream with sorted elements 
        // using IntStream.sorted() function 
        stream.sorted().forEach(System.out::println); 
    } 
}
输出:
6
7
8
9
10

范例2:使用IntStream sorted()对IntStream generator()生成的随机数进行排序。

// Java code to sort IntStream 
// using IntStream.sorted() 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an IntStream by generating 
        // random elements using IntStream.generate() 
        IntStream stream = IntStream.generate(() 
                          -> (int)(Math.random() * 10000)) 
                             .limit(5); 
  
        // displaying the stream with sorted elements 
        // using IntStream.sorted() function 
        stream.sorted().forEach(System.out::println); 
    } 
}
输出:
501
611
7991
8467
9672


相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 IntStream sorted() in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。