Java String Stringbuffer
|
Popularity: (317)
Tags: java string stringbuffer Link: Visit It >> |
Strings are objects in Java code. These objects however are immutable. That is their value once assigned can never be changed. For instance: String msg = "Hello" msg = " World" Here the original String "Hello" is not changed.