这将返回一个String,表示指定数组中的字符序列。
以下是此方法的语法 -
public static String copyValueOf(char[] data, int offset, int count)
这是参数的细节 -
data - 字符数组。
offset - 子阵列的初始偏移量。
count - 子阵列的长度。
此方法返回包含字符数组字符的String。
public class Test {
public static void main(String args[]) {
char[] Str1 = {'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd'};
String Str2 = "";
Str2 = Str2.copyValueOf( Str1, 2, 6 );
System.out.println("Returned String: " + Str2);
}
}
这将产生以下结果 -
Returned String: llo wo