例如:
返回一个表示char数组某些字符的String:
char[] myStr1 = {'H', 'e', 'l', 'l', 'o'};
String myStr2 = "";
myStr2 = myStr2.copyValueOf(myStr1, 0, 5);
System.out.println("Returned String: " + myStr2);
1、定义和用法
copyValueOf()
方法返回表示字符数组字符的String
。
此方法返回一个新的String
数组并将字符复制到其中。
2、调用语法
public static String copyValueOf(char[] data, int offset, int count)
3、参数说明
参数 | 描述 |
data |
|
offset |
|
count |
|
4、方法说明
返回值: | String,表示char数组的字符 |
Throws: |
或者count大于char数组的长度,或者为负的,则引发此异常。 |