How many objects are created when we create String class
object using new operator?
Answer Posted / eknath wagadre
No!!!!!!!!!!!!!!!!!!!!
According to the Question it will creating only One object
in the Heap only..........
if we are using String str = new String("abc"); for this
statement only one object is creating in the heap only....
if we are using the code like
String str = "abc";
String str = new String("abc");
In this case only one object is creating in the heap.bcz of
in first line obviously one object is creating in the pool
and assigning the reference(S) to abc. now come in second
line it's creating object in heap but jvm will checking for
reference(s) bcz both object reference is same so now (s) is
pointing to abc which is in heap and pool object is
collected by GC. now we have only one object is heap.
if we are using the code like
String str ="abc";
String str1 = "abc";
String str2 =new String("abc");
Then only two object is creating one in string content pool
and another one is in heap.
Thank's
Eknath
| Is This Answer Correct ? | 16 Yes | 6 No |
Post New Answer View All Answers
What is a generic type?
which pattern is default in scanner package?
What is the difference between object oriented programming language and object based programming language?
Can list contain null in java?
How do you sort an array in java?
What is the difference between assignment and initialization?
What happens if we don’t override run method ?
Can we override protected method in java?
What is a website container?
What is a finally block?
When super keyword is used?
What do you mean by access modifier?
Define an applet in java?
What is the difference between int and integer in java?
What are the object and class classes used for?