Java에서 String은 불변 클래스이며 Java 9의 String 클래스에 두 개의 새로운 메서드가 추가되었습니다. 이 두 메서드는 chars()와 codePoints()입니다. 두 메서드 모두 IntStream 개체를 반환합니다.
String 클래스의 chars() 메서드는 시퀀스에서 0 확장 문자 값의 int 스트림을 반환할 수 있습니다.
<strong>public IntStream chars()</strong>
import java.util.stream.IntStream; public class StringCharsMethodTest { public static void main(String args[]) { String str = "Welcome to TutorialsPoint"; IntStream intStream = str.<strong>chars()</strong>; intStream.forEach(x -> System.out.printf("-%s", (char)x)); } }
<strong>-W-e-l-c-o-m-e- -t-o- -T-u-t-o-r-i-a-l-s-P-o-i-n-t </strong>
codePoints() 메서드는 코드 포인트 값 스트림을 반환할 수 있습니다. 이 시퀀스에서.
<strong>public IntStream codePoints()</strong>
import java.util.stream.IntStream; public class StringCodePointsMethodTest { public static void main(String args[]) { String str = "Welcome to Tutorix"; IntStream intStream = str.<strong>codePoints()</strong>; intStream.forEach(x -> System.out.print(new StringBuilder().<strong>appendCodePoint</strong>(x))); } }
<strong>Welcome to Tutorix</strong>
위 내용은 Java 9의 String 클래스에 어떤 새로운 메소드가 추가되었습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!