Java String copyValueOf()方法
描述
这种方法有两种不同的形式:
-
public static String copyValueOf(char[] data): 返回表示所指定的数组中的字符序列的字符串。
-
public static String copyValueOf(char[] data, int offset, int count): 返回表示所指定的数组中的字符序列的字符串。
语法
此方法定义的语法如下:
public static String copyValueOf(char[] data) or public static String copyValueOf(char[] data, int offset, int count)
参数
这里是参数的细节:
-
data -- 字符数组。
-
offset -- 初始的子数组的偏移量。
-
count -- 子数组的长度。
返回值:
-
此方法返回一个包含字符数组的字符组成的字符串.
例子:
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 ); System.out.println("Returned String: " + Str2); Str2 = Str2.copyValueOf( Str1, 2, 6 ); System.out.println("Returned String: " + Str2); } }
这将产生以下结果:
Returned String: hello world Returned String: llo wo