String Class의 Constructor & Method (command + f 로 검색하시길 추천합니다.) String (String s) String Instance 생성 //String Instance 생성 String s = new String("hello"); System.out.println(s); //hello String(char[] value) 주어진 문자열을 가지고 있는 String Instance 생성 //주어진 문자열을 가지고 있는 String Instance생성 char[] c = {'h', 'e', 'l', 'l', 'o'}; String s1 = new String(c); System.out.println(s1); //hello String(StringBuffer buf)..