How can we improve performance of this piece of code ?
- by Rachel
How to Improve performance of this chunk of code :
public static String concatStrings(Vector strings) {
        String returnValue = "";
        Iterator iter = strings.iterator();
        while( iter.hasNext() ) {
            returnValue += (String)iter.next();
        }
        return returnValue;
    }