Java StringBuilder append()方法

java.lang.StringBuilder.append(CharSequence s, int start, int end) 方法追加指定的CharSequence到这个序列的子序列。参数s字符,从索引开始,以顺序被添加到此序列最高的(唯一的)索引端的内容。此序列的长度为增加 end - star 的值。

1 语法

public StringBuilder append(CharSequence s, int start, int end)

2 参数

s : 这是序列用来追加。

start : 这是要追加的子序列的起始索引。

end : 这是要追加的子序列的结束索引。

3 返回值

该方法返回这个对象的引用。

4 示例 

package com.yiidian;

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

public class StringBuilderDemo {

  public static void main(String[] args) {
  
    StringBuilder str = new StringBuilder("tutorials ");
    System.out.println("string = " + str);

    CharSequence cSeq = "tutyiidian";
    // appends the CharSequence with start index 4 and end index 9
    str.append(cSeq, 4, 9);
    
    // print the StringBuilder after appending
    System.out.println("After append = " + str);
  }      
}

输出结果为:

string = tutorials
After append = tutorials yiidian

 

热门文章

优秀文章