Java StringBuffer append()方法

java.lang.StringBuffer.append(char[] str) 方法追加char数组,即str参数为这个序列的字符串表示形式。数组参数的字符追加的顺序到这个序列的内容。这个序列以该参数的长度增加它的长度。

1 语法

public StringBuffer append(char[] str)

2 参数

str : 这是要追加的字符。

3 返回值

该方法返回一个引用对象。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StringBuffer append()方法
 */
import java.lang.*;

public class StringBufferDemo {

  public static void main(String[] args) {
  
    StringBuffer buff = new StringBuffer("tuts ");
    System.out.println("buffer = " + buff);
    
    // char array
    char[] str = new char[]{'p','o','i','n','t'};
	
    /* appends the string representation of char array argument to
    this string buffer */
    buff.append(str);
    // print the string buffer after appending
    System.out.println("After append = " + buff);
  }
}

输出结果为:

buffer = tuts
After append = tuts point

 

热门文章

优秀文章