string pool 원리

· Java
개요 이번 글에서는 예제를 통해 자바의 String Pool과 intern() 메서드 개념을 자세히 알아봅니다. 문자열 리터럴과 new 연산자를 통한 객체 생성, 그리고 intern() 메서드 사용 시 String Pool 내의 객체 참조를 어떻게 변경하는지 살펴봅니다.  들어가기 전에 // Case 1String str1 = "Hello, World!";String str2 = "Hello, World!";String str3 = new String("Hello, World!");String str4 = new String("Hello, World!");System.out.println(str1 == str2); System.out.println(str1 == str3); System.out.print..
nstgic3
'string pool 원리' 태그의 글 목록