java.lang.String.getChars()方法實例
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.gitbook.net"; 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