String address=null;
String body = "";
String date = "";
for(int i = 0; somecondition; i++)
{
body = cursor.getBody(i);
//and so on all strings get changed
//REST OF THE CODE
}
This loops for arround 500 times so what should I use?
This loops for arround 500 times so what should I use? |
||||
| show 2 more comments |
|
Given that nothing changes in the String you are just reassigning it, use a String. StringBuilder is used when you want to build up a String in pieces. |
|||
|
|
|
Since you're just assigning some string to the variable, just use String instead of StringBuilder. StringBuilder as its name suggest, is used for building a new string where concatenation or manipulation is desired. |
|||
|
|
|
Your example doesn't build any String, just going assign values. In that case you can use |
|||
|
|
StringBuilder. – K-ballo Sep 30 '11 at 4:42i. There is no String being built/concatenated. What is the question? – Thilo Sep 30 '11 at 4:43body,address, etc. will just have the same value as it did right before the loop ended... So why is the loop there in the first place? (assumingcursor.getBody(i)doesn't change the state of the your program) – NullUserException♦ Sep 30 '11 at 4:49