<H1>Concatenating Strings</H1>
<I>Which of these two is better?</I>

string1 + string2;
new StringBuffer(string1).append(string2);
