java.lang.StringBuffer.getChars() 方法從這個序列複製字元到目標字元陣列 dst.
要複製的第一個字元的索引 srcBegin. 要複製的最後一個字元位於索引srcEnd - 1. 要複製字元的總數是 srcEnd - srcBegin. 字元複製到dst開始於索引dstBegin並結束於索引子陣列: dstbegin + (srcEnd-srcBegin) - 1
以下是java.lang.StringBuffer.getChars()方法的宣告
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
srcBegin -- 開始複製這個偏移量。
srcEnd -- 停止複製這個偏移量。
dst -- 將資料複製到陣列中。
dstBegin -- 這是偏移到dst。
此方法不返回任何值。
NullPointerException -- 如果 dst 為 null
IndexOutOfBoundsException -- 這被丟擲,如果以下任一條件為真:
srcBegin is negative dstBegin is negative the srcBegin argument is greater than the srcEnd argument. srcEnd is greater than this.length(). dstBegin + srcEnd - srcBegin is greater than dst.length
下面的例子顯示java.lang.StringBuffer.getChars()方法的使用。
package com.yiibai; import java.lang.*; public class StringBufferDemo { public static void main(String[] args) { StringBuffer buff = new StringBuffer("java programming"); System.out.println("buffer = " + buff); // char array char[] chArr = new char[]{'t','u','t','o','r','i','a','l','s'}; // copy the chars from index 5 to index 10 into subarray of chArr // the offset into destination subarray is set to 3 buff.getChars(5, 10, chArr, 3); // print character array System.out.println(chArr); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
buffer = java programming tutprogrs