Java では、String は不変クラスであり、Java 9 では 2 つの新しいメソッドが String クラスに追加されました。これら 2 つのメソッドは、chars() と codePoints() です。どちらのメソッドも IntStream オブジェクトを返します。
String クラスの chars() メソッドは、シーケンスからゼロ拡張された文字値の int ストリームを返すことができます。
public IntStream chars()
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
public IntStream codePoints()
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 クラスにはどのような新しいメソッドが追加されましたか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。