Hi Guys,
I have a nitpick back which stated the following:
>> if ( (charsDisplayedCount += name.length()) > 80 )
>Rather than doing all of this massive and expensive
string concatenation,
>wouldn't it be easier to do some simple math? I suggest that you
>calculate the number of iterations ahead of time.
Surely I'm *NOT* doing a String concatenation as the length() method of the String class simply returns an int?
Am I missing something here? If I do has suggested, my code seems to grow by another 5 lines and would be more complex !!
Regards,