string vs stringbuilder vs stringbuffer
String은 자바에서 가장 많이 사용하는 클래스 중 하나이다. String은 불변객체(immutable) 이고, StringBuffer는 가변객체(mutable)이다 이 말은 String 연산은 항상 새로운 객체를 생성하고 StringBuffer 그렇지 않다는 이야기이다. 요즘은 위와 같은 String + 연산은 자바 컴파일러가 StringBuilder 또는 StringBuffer로 대체한다.15.18.1. String Concatenation Operator +If only one operand expression is of type String, then string conversion (§5.1.11) is performed on the other operand to produce a string..
개발
2019. 3. 22. 23:07