String 객체 타입은 Java 언어에서 특혜를 심하게 받고 있는 객체이다. 그만큼 사용 빈도가 많다는 말씀.. ■ Java 문서에서의 정의 The String class represents character strings. All string literals in Java programs, such as "abc", are implemented as instances of this class. Strings are constant; their values cannot be changed after they are created. String buffers support mutable strings. Because String objects are immutable they can be shared. ..