java.lang.String.getChars() 方法複製此字串到目標字元陣列的字元。
要複製的第一個字元的索引srcBegin, 要複製的最後一個字元位於索引 srcEnd-1 即要複製的字元的總數目是 srcEnd-srcBegin。
字元複製到dst 開始於索引dstBegin並結束於索引子陣列:dstbegin + (srcEnd-srcBegin) - 1
以下是java.lang.String.getChars()方法的宣告
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
srcBegin -- 這是複製的字串的第一個字元的索引。
srcEnd -- 這是複製字串中的最後一個字元之後的索引。
dst -- 這是目標陣列。
dstBegin -- 這是一開始的目標陣列中的偏移量。
此方法不返回任何值。
IndexOutOfBoundsException -- 它丟擲這個異常,如果任一下列條件為真:
srcBegin is negative srcBegin is greater than srcEnd srcEnd is greater than the length of this string dstBegin is negative dstBegin+(srcEnd-srcBegin) is larger than dst.length
下面的例子顯示java.lang.String.getChars()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "Website:www.tw511.com"; System.out.println(str); // character array char[] chararr = new char[30]; /* copies characters from starting and ending index into the destination character array */ str.getChars(12, 26, chararr, 0); // print the character array System.out.print("Value of character array : "); System.out.println(chararr); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Website:www.yiibai.com Value of character array : yiibai