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


Java Character Array转IntStream用法及代码示例



给定一个字符数组,任务是将该数组转换为包含字符元素的 ASCII 值的IntStream。

例子:

Input: char[] = { 'G', 'e', 'e', 'k', 's' }
Output: 71, 101, 101, 107, 115

Input: char[] = { 'G', 'e', 'e', 'k', 's', 'F', 'o', 'r', 'G', 'e', 'e', 'k', 's' }
Output: 71, 101, 101, 107, 115, 70, 111, 114, 71, 101, 101, 107, 115

算法:

  1. 获取要转换的字符数组。
  2. 使用 Stream.of() 方法将其转换为 Stream。
  3. 使用flatMapToInt()方法将形成的Stream转换为IntStream。
  4. 打印形成的IntStream。

下面是上述方法的实现:


// Java program to convert 
// Character Array to IntStream 
  
import java.util.stream.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Get the Character Array to be converted 
        Character charArray[] = { 'G', 'e', 'e', 'k', 's' }; 
  
        // Convert charArray to IntStream 
        IntStream 
            intStream 
            = Stream 
  
                  // Convert charArray into Stream of characters 
                  .of(charArray) 
  
                  // Convert the Stream of characters into IntStream 
                  .flatMapToInt(IntStream::of); 
  
        // Print the elements of the IntStream 
        System.out.println("IntStream:"); 
        intStream.forEach(System.out::println); 
    } 
} 

输出:

IntStream:
71
101
101
107
115

相关用法


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