aspose file tools
The moose likes Beginning Java and the fly likes String creation 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 » Beginning Java
Reply Bookmark "String creation" Watch "String creation" New topic
Author

String creation

asha Pawaskar
Greenhorn

Joined: Jun 25, 2010
Posts: 7
hi

what is the difference between

String s = "abc"; and
String s = new String("abc");
Christophe Verré
Sheriff

Joined: Nov 24, 2005
Posts: 14672
    
  11

Check this Journal article.


[My Blog]
All roads lead to JavaRanch
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: String creation
 
Similar Threads
Related to String
String assignment
Stack Overflow
Difference between s = "" and new String("a")
.equals()