Dec 31 2007 11:33 AM 1288 2 Immutable Strings Object vyasbsraju How String object is immutable and why? ramnath_19 Profile Answers by ramnath_19 Questions by ramnath_19 Jan 3rd, 2008 Ur question can be answered with an example : String s = "here it goes";s.toUppercase(); This does not modify the variable s at all. Instead, a new String object is created with all the cha... Answer Question Select Best Answer
Dec 31 2007 11:33 AM 1288 2 Immutable Strings Object vyasbsraju How String object is immutable and why? ramnath_19 Profile Answers by ramnath_19 Questions by ramnath_19 Jan 3rd, 2008 Ur question can be answered with an example : String s = "here it goes";s.toUppercase(); This does not modify the variable s at all. Instead, a new String object is created with all the cha... Answer Question Select Best Answer
ramnath_19 Profile Answers by ramnath_19 Questions by ramnath_19 Jan 3rd, 2008 Ur question can be answered with an example : String s = "here it goes";s.toUppercase(); This does not modify the variable s at all. Instead, a new String object is created with all the cha...