dhanashree mangaonkar

Greenhorn
+ Follow
since Jul 29, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by dhanashree mangaonkar

Now String str1="hi"
String str2="hi"
Both str1 and str2 denote same object
If i change str2="hello" then will str1 also point to "hello"?
String str="hi"
str = str + "hello"
or
str=str.concat("hello")
Will result into str="hi hello"
now strings r immutable then why it's content gets changed?