created: 05/08/00; Revised: 07/22/02, 06/02/03, 02/20/06
This chapter discusses the StringBuffer class,
which is
useful for processing character data.
The class String alone could be used for this,
but the StringBuffer class
is often faster and more convenient.
Strings charAt() method of StringStringBuffer
Although the StringBuffer class is sometimes very useful,
it is not essential.
It is not covered in the AP Java computer science test.
(Review: ) Examine the following code:
String data = new String("Turtle");
data = data + 's' ;
Does the last statement construct a new String?