aspose file tools
The moose likes Java in General and the fly likes String class Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "String class" Watch "String class" New topic
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
    
    4
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]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: String class
 
Similar Threads
How to remove spaces from string
Split Method in String Class
String Q
How String Can Be A Reference Variable...
More then the specified answer?