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


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


IntStream类的codePoints()方法用于从给定序列中获取代码点值流。它返回作为参数传递的字符的ASCII值

用法:

public IntStream codePoints()

返回值:此方法返回IntStream代码值


以下示例说明了codePoints()方法的使用:

示例1:

// Java program to demonstrate 
// codePoints() method of IntStream class 
  
import java.util.stream.IntStream; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
  
        // String to be converted 
        String str = "GeeksForGeeks"; 
  
        // Convert the string to code values 
        // using codePoints() method 
        IntStream stream = str.codePoints(); 
  
        System.out.println("ASCII Values are: "); 
  
        // Print the code points 
        stream.forEach(System.out::println); 
    } 
}
输出:
ASCII Values are: 
71
101
101
107
115
70
111
114
71
101
101
107
115

示例2:

// Java program to demonstrate 
// codePoints() method of IntStream class 
  
import java.util.stream.IntStream; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
  
        // String to be converted 
        String str = "A computer science"
                     + " portal for geeks"; 
  
        // Convert the string to code values 
        // using codePoints() method 
        IntStream stream = str.codePoints(); 
  
        System.out.println("ASCII Values are: "); 
  
        // Print the code points 
        stream.forEach(System.out::println); 
    } 
}
输出:
ASCII Values are: 
65
32
99
111
109
112
117
116
101
114
32
115
99
105
101
110
99
101
32
112
111
114
116
97
108
32
102
111
114
32
103
101
101
107
115


相关用法


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