Thread: string doubt
View Single Post
  #2 (permalink)  
Old 08-02-2007, 03:55 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,124
hardwired is on a distinguished road
s is a String.
str is a copy of the String argument "abc". Since strings in java are immutable, the second statement is not necessary unless you need a copy of the argument string. See String api.
Reply With Quote