logo

자바 문자열 toCharArray()

그만큼 자바 문자열 toCharArray() 메소드는 이 문자열을 문자 배열로 변환합니다. 새로 생성된 문자 배열을 반환하며, 길이는 이 문자열과 비슷하고 내용은 이 문자열의 문자로 초기화됩니다.


내부 구현

 public char[] toCharArray() { // Cannot use Arrays.copyOf because of class initialization order issues char result[] = new char[value.length]; System.arraycopy(value, 0, result, 0, value.length); return result; } 

서명

문자열 toCharArray() 메소드의 서명 또는 구문은 다음과 같습니다.

 public char[] toCharArray() 

보고

문자 배열


Java String toCharArray() 메소드 예

 public class StringToCharArrayExample{ public static void main(String args[]){ String s1=&apos;hello&apos;; char[] ch=s1.toCharArray(); for(int i=0;i<ch.length;i++){ system.out.print(ch[i]); } }} < pre> <span> Test it Now </span> <p>Output:</p> <pre> hello </pre> <h2>Java String toCharArray() Method Example 2</h2> <p>Let&apos;s see one more example of char array. It is useful method which returns char array from the string without writing any custom code. </p> <pre> public class StringToCharArrayExample2 { public static void main(String[] args) { String s1 = &apos;Welcome to Javatpoint&apos;; char[] ch = s1.toCharArray(); int len = ch.length; System.out.println(&apos;Char Array length: &apos; + len); System.out.println(&apos;Char Array elements: &apos;); for (int i = 0; i <len; i++) { system.out.println(ch[i]); } }< pre> <p>Output:</p> <pre> Char Array length: 21 Char Array elements: W e l c o m e t o J a v a t p o i n t </pre></len;></pre></ch.length;i++){>

Java 문자열 toCharArray() 메서드 예제 2

char 배열의 예를 하나 더 살펴보겠습니다. 사용자 정의 코드를 작성하지 않고 문자열에서 char 배열을 반환하는 유용한 방법입니다.

AWS SNS
 public class StringToCharArrayExample2 { public static void main(String[] args) { String s1 = &apos;Welcome to Javatpoint&apos;; char[] ch = s1.toCharArray(); int len = ch.length; System.out.println(&apos;Char Array length: &apos; + len); System.out.println(&apos;Char Array elements: &apos;); for (int i = 0; i <len; i++) { system.out.println(ch[i]); } }< pre> <p>Output:</p> <pre> Char Array length: 21 Char Array elements: W e l c o m e t o J a v a t p o i n t </pre></len;>