Java에서 String 개체를 만드는 방법에는 두 가지가 있습니다.
- 새 연산자 사용
String str = new String("Tutorials Point");
- 문자열 리터럴 사용
String str = "Tutorials Point";
Java에서 new String()을 호출할 때마다 힙 메모리에 객체가 생성되고 String 리터럴은 SCP(String Constant Pool)로 이동합니다.
객체의 경우 JVM은 Java에서 효율적인 메모리 관리를 위한 SCP를 사용했습니다. 다른 Java 객체와 달리 힙 영역에서 String 객체를 관리하는 대신 String 상수 풀을 도입했습니다. String 상수 풀의 중요한 특징 중 하나는 풀에 이미 String 상수가 있는 경우 동일한 String 객체를 생성하지 않는다는 것입니다.
예시
public class SCPDemo { public static void main (String args[]) { String s1 = "Tutorials Point"; String s2 = "Tutorials Point"; System.out.println("s1 and s2 are string literals:"); System.out.println(s1 == s2); String s3 = new String("Tutorials Point"); String s4 = new String("Tutorials Point"); System.out.println("s3 and s4 with new operator:"); System.out.println(s3 == s4); } }
출력
s1 and s2 are string literals: true s3 and s4 with new operator: false