Red Security
Why Java Strings are immutable in nature? - Printable Version

+- Red Security (https://redsecurity.info/cc)
+-- Forum: Programming (https://redsecurity.info/cc/forumdisplay.php?fid=5)
+--- Forum: Java (https://redsecurity.info/cc/forumdisplay.php?fid=7)
+--- Thread: Why Java Strings are immutable in nature? (/showthread.php?tid=1436)



Why Java Strings are immutable in nature? - Mr.Kurd - 03-20-2020

In The Name OF Allah
Al-Salam Alekum


Why Java Strings are immutable in nature?
Quote:In Java, string objects are immutable in nature which simply means once the String object is created its state cannot be modified. Whenever you try to update the value of that object instead of updating the values of that particular object, Java creates a new string object. Java String objects are immutable as String objects are generally cached in the String pool. Since String literals are usually shared between multiple clients, action from one client might affect the rest. It enhances security, caching, synchronization, and performance of the application.


Wa Salam Alekum