When we declare a String literal like
String str = "abc";
only one object is created in String pool. But when we create it like
String str = new String("abc");
2 objects are created one in heap memory other in the String pool. whats the purpose of creating an entry in string pool when you already have an object placed in the heap memory?
If heap object gets garbage collected and
"abc"
is required again, then JVM can just point to pool. And, that's one more reason to prefer literal overnew
forString
.See this: Why to create a String object using new
What is the purpose of the expression "new String(...)" in Java?