JAVA__37

AMJ·2023년 3월 7일
0

언어_log

목록 보기
37/57

StringBuilder를 통한 문자합성

  • 쓸데없는 메모리 낭비 줄인다.
class Main {
    public static void main(String[] args) {
//      별찍는 과정이 메모리에 축적된다. >> String 객체 불변성
        String s = "*";
        String k = "*";
        s += "*"; // **
        s += "*"; // ***
        System.out.println(s);

        //
        StringBuilder sb = new StringBuilder();
        sb.append("*");
        sb.append("*");
        sb.append("*"); // 한번에 *** 적용되어 메모리 절약
        System.out.println(sb.toString());

    }
}
profile
재미있는 것들

0개의 댓글