If you are using strings in java , especially in a loop, don't use + operator to connect strings. String result = ""; for(String s: strArray) { result = result + s; } return result; The above is bad from a performance perspective. Every time, a...
simplejavatips.com1 min readNo responses yet.