1. 程式人生 > >String類中getChars方法的用法

String類中getChars方法的用法

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

 該方法的作用是將當前字串從srcBegin到srcEnd-1位置上的字元複製到字元陣列dst中,並從dst的dstBegin處開始存放

String str = "addd";
char [] dst = new char[6];
//將當前字串str從0到(4-1)位置上的字元複製到字元陣列dst中,並從dst的1處開始存放
str.getChars(0,4,dst,1);
int i = 0;
for (char val:dst) {
  System.out.println("當前索引位置"+(i++)+":"+val);
}

輸出結果:

當前索引位置0: 
當前索引位置1:a
當前索引位置2:d
當前索引位置3:d
當前索引位置4:d
當前索引位置5: