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 Tutorialspoint.com"); char[] Str2 = new char[7]; try{ Str1.getChars(2, 9, Str2, 0); System.out.print("Copied Value = " ); System.out.println(Str2 ); }catch( Exception ex){ System.out.println("Raised exception..."); } } }
這將產生以下結果:
Copied Value = lcome t