1) chars():
String类的chars()方法可以返回一个从该序列中零扩展字符值的int流。
语法
public IntStream chars()
登录后复制
Example
的中文翻译为:
例子
import java.util.stream.IntStream;
public class StringCharsMethodTest {
public static void main(String args[]) {
String str = "Welcome to TutorialsPoint";
IntStream intStream = str.chars();
intStream.forEach(x -> System.out.printf("-%s", (char)x));
}
}
登录后复制
输出
-W-e-l-c-o-m-e- -t-o- -T-u-t-o-r-i-a-l-s-P-o-i-n-t
登录后复制
2) codePoints():
codePoints()方法可以从此序列返回一个代码点值流。
Syntax
public IntStream codePoints()
登录后复制
Example
的中文翻译为:
示例
import java.util.stream.IntStream;
public class StringCodePointsMethodTest {
public static void main(String args[]) {
String str = "Welcome to Tutorix";
IntStream intStream = str.codePoints();
intStream.forEach(x -> System.out.print(new StringBuilder().appendCodePoint(x)));
}
}
登录后复制
输出
Welcome to Tutorix
登录后复制
以上就是Java 9中String类添加了哪些新方法?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!