> Java > java지도 시간 > 본문

Java 9의 String 클래스에 어떤 새로운 메소드가 추가되었습니까?

WBOY
풀어 주다: 2023-08-20 09:06:28
앞으로
830명이 탐색했습니다.

Java 9中String类添加了哪些新方法?

Java에서 String은 불변 클래스이며 Java 9의 String 클래스에 두 개의 새로운 메서드가 추가되었습니다. 이 두 메서드는 chars()와 codePoints()입니다. 두 메서드 모두 IntStream 개체를 반환합니다.

1) chars():

String 클래스의 chars() 메서드는 시퀀스에서 0 확장 문자 값의 int 스트림을 반환할 수 있습니다.

Syntax

<strong>public IntStream chars()</strong>
로그인 후 복사

Example

의 중국어 번역은 다음과 같습니다:

Example

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));
   }
}
로그인 후 복사

Output

<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>
로그인 후 복사

2) codePoints():

codePoints() 메서드는 코드 포인트 값 스트림을 반환할 수 있습니다. 이 시퀀스에서.

Syntax

<strong>public IntStream codePoints()</strong>
로그인 후 복사

Example

의 중국어 번역은 다음과 같습니다:

Example

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)));
   }
}
로그인 후 복사

Output

<strong>Welcome to Tutorix</strong>
로그인 후 복사

위 내용은 Java 9의 String 클래스에 어떤 새로운 메소드가 추가되었습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿