描述
The java.lang.StringBuffer.append(CharSequence s) method appends the specified CharSequence to this sequence.The characters of the CharSequence argument are appended, in order, increasing the length of this sequence by the length of the argument.
声明
Following is the declaration for java.lang.StringBuffer.append() method
public StringBuffer append(CharSequence s)
参数
s -- This is the CharSequence to append.
返回值
This method returns a reference to this object.
异常
NA