Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Grant Young   on Oct 10 In Java Category.

  
Question Answered By: Daniel Jones   on Oct 10

sorry to jump in here BUT DO NOT USE + concatenate strings!!!!
Use the StringBuffer!!
StringBuffer buffer = new StringBuffer();
buffer.append("xxx");
buffer.append("yyy");
buffer.toString();

I don't know why still so many developers just do not get it. One of the
very basics.

Sorry, when I see things like that I get a bit upset sometimes.

Share: 

 

This Question has 9 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on Problem in Fetching Values Or get search suggestion and latest updates.


Tagged: