| Author |
String class
|
Arpit Chaudhary
Greenhorn
Joined: Dec 28, 2007
Posts: 7
|
|
|
what is the reason to make String class immutable.......?
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32675
|
|
Welcome to the Ranch. Have you read the API documentation for String? That is so you can use the same String object in several different places. If you have a String like "Arpit" you can pass it around your application in different classes and different threads secure in the knowledge that it will still say "Arpit" when you have finished. If a String were mutable it would require a new String every time you used it, otherwise your String "Arpit" could mysteriously change to "Campbell" when you don't expect it. Anybody able to explain it better than me?
|
 |
Akhilesh Trivedi
Ranch Hand
Joined: Jun 22, 2005
Posts: 1493
|
|
May be you would like to see this one... http://www.javaranch.com/journal/200409/ScjpTipLine-StringsLiterally.html
|
Keep Smiling Always — My life is smoother when running silent. -paul
[FAQs] [Certification Guides] [The Linux Documentation Project]
|
 |
 |
|
|
subject: String class
|
|
|