例如:
public class Test {
public static void main(String args[]) {
String Str1 = new String("www.cjavapy.com");
char[] Str2 = new char[7];
try {
Str1.getChars(4, 11, Str2, 0);
System.out.println(Str2 );
} catch( Exception ex) {
ex.printStackTrace();
}
}
}
1、定义和用法
getChars()
方法将字符从字符串复制到目标字符数组。
2、调用语法
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
3、参数说明
参数 | 描述 |
srcBegin | 字符串中要复制的第一个字符的索引 |
srcEnd | 字符串中要复制的最后一个字符之后的索引 |
dst | 目标数组 |
dstBegin | 目标数组中的起始偏移量 |