中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

Java getChars() 方法

Java String類Java String類


getChars() 方法將字符從字符串復制到目標字符數(shù)組。

語法

public void getChars(int srcBegin, int srcEnd, char[] dst,  int dstBegin)

參數(shù)

  • srcBegin -- 字符串中要復制的第一個字符的索引。

  • srcEnd -- 字符串中要復制的最后一個字符之后的索引。

  • dst -- 目標數(shù)組。

  • dstBegin -- 目標數(shù)組中的起始偏移量。

返回值

沒有返回值,但會拋出 IndexOutOfBoundsException 異常。

實例

public class Test {
????public static void main(String args[]) {
????????String Str1 = new String("");
????????char[] Str2 = new char[6];

????????try {
????????????Str1.getChars(4, 10, Str2, 0);
????????????System.out.print("拷貝的字符串為:" );
????????????System.out.println(Str2 );
????????} catch( Exception ex) {
????????????System.out.println("觸發(fā)異常...");
????????}
????}
}

以上程序執(zhí)行結果為:

拷貝的字符串為:json

Java String類Java String類

其他擴展