An Efficient Method of String Concatenation
A good way to concatenate strings in a loop or when performing multiple concatenations, is to use the StringBuilder class:
String s = "a"
s+="b"; //this is slow
StringBuilder sb = new StringBuilder();
sb.Append("a");
sb.Append("b");
No comments:
Post a Comment