Java String getChars()方法

2019-10-16 22:21:50

Java String getChars()方法將此字串中的字元複製到目標字元陣列中。

語法

以下是此方法的語法 -

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

引數

  • srcBegin - 要複製的字串中第一個字元的索引。
  • srcEnd - 要複製的字串中最後一個字元後面的索引。
  • dst - 目標陣列。
  • dstBegin - 目標陣列中的起始偏移量。

返回值

  • 它不返回任何值,但可能會丟擲IndexOutOfBoundsException

範例


import java.io.*;

public class Test {

    public static void main(String args[]) {
        String Str1 = new String("Welcome to Tw511.com");
        char[] Str2 = new char[7];
        try {
            Str1.getChars(8, 15, Str2, 0);
            System.out.print("Copied Value = ");
            System.out.println(Str2);
        } catch (Exception ex) {
            System.out.println("Raised exception...");
        }
    }
}

執行上面範例程式碼,得到以下結果:

Copied Value = to Yiib