| Author |
Difference between String s
|
Rajendra Prakash
Ranch Hand
Joined: Sep 10, 2009
Posts: 293
|
|
Difference between 1.string s="raja"; and 2. string s=new String("raja");
what i read is , only one instance and one reference created for first case. Two instances and one
reference created for second case. Object created in constant memory for first case.
Object created in heap memory for second case.
My question is in general how many objects for both.
|
 |
ayyappan Bas
Ranch Hand
Joined: Oct 11, 2008
Posts: 37
|
|
Hi
Just refer following URl
http://www.javabeginner.com/learn-java/java-string-comparison
|
Thanks & Regards
Ayyappan
|
 |
Rajendra Prakash
Ranch Hand
Joined: Sep 10, 2009
Posts: 293
|
|
No , i am not clear. 1) String s=new String("raj"); for this code one object created in heap memory
and one object created in String pool.(String pool is also in heap memory ah
2) String s="raj"; for this code one objected created in string pool only .
Is it right or wrong. If wrong how
|
 |
Rajendra Prakash
Ranch Hand
Joined: Sep 10, 2009
Posts: 293
|
|
I am getting different comments from google. Is it correct
In case of s1 2 objects will be formed one in heap memory while other in string constant memory.
In case of s2 1 object will be formed in string constant memory.
|
 |
Christophe Verré
Sheriff
Joined: Nov 24, 2005
Posts: 14669
|
|
|
This Journal article should interest you.
|
[My Blog]
All roads lead to JavaRanch
|
 |
 |
|
|
subject: Difference between String s
|
|
|