扫码一下
查看教程更方便
copyValueOf() 方法返回一个字符串,它表示指定数组中的字符序列。
public static String copyValueOf(char[] data)
data - 字符数组。
此方法返回一个字符串,其中包含字符数组的字符。
public class Main { 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); } }
上面示例编译运行结果如下
Returned String: hello world