char
StringBuffer
StringBuilder
예:
new StringBuilder('(').append("1").append(')');
빠른 수정을 적용한 후:
new StringBuilder("(").append("1").append(')');