StringBuffer - Appending a Substring Clarification
I am refering to "Beginning Java 2 - JDK 5 Edition" (ISBN: 81-265-0570-2).
On page 189-190, under the topic "Appending a Substring", the following method has been listed for StringBuffer
append(String, int, int)
There is no such method available. There is an
append(char[], int, int)
|