Object creation at the time of declaration of a String in java

77 Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

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 over new for String.

See this: Why to create a String object using new

What is the purpose of the expression "new String(...)" in Java?