자바 char 배열을 String으로 변환

1 개요[ | ]

자바 char 배열을 String으로 변환
public class MyClass {
    public static void main(String args[]) {
        char[] arr = {'h', 'e', 'l', 'l', 'o'};
        String str = new String(arr);
        System.out.println(str); // hello
    }
}
public class MyClass {
    public static void main(String args[]) {
        char[] arr = {'h', 'e', 'l', 'l', 'o'};
        String str = String.valueOf(arr);
        System.out.println(str); // hello
    }
}
public class MyClass {
    public static void main(String args[]) {
        char[] arr = {'h', 'e', 'l', 'l', 'o'};
        String str = String.copyValueOf(arr);
        System.out.println(str); // hello
    }
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}