Java copyValueOf() 方法
copyValueOf() 方法有兩種形式:
public static String copyValueOf(char[] data): 返回指定數(shù)組中表示該字符序列的字符串。
public static String copyValueOf(char[] data, int offset, int count): 返回指定數(shù)組中表示該字符序列的 字符串。
語(yǔ)法
public static String copyValueOf(char[] data)
或
public static String copyValueOf(char[] data, int offset, int count)
參數(shù)
data -- 字符數(shù)組。
offset -- 子數(shù)組的初始偏移量。。
count -- 子數(shù)組的長(zhǎng)度。
返回值
如字符串與指定 StringBuffer 表示相同的字符序列,則返回 true;否則返回 false。
實(shí)例
public class Test {
public static void main(String args[]) {
char[] Str1 = {'h', 'e', 'l', 'l', 'o', ' ', 'w', '3', 'c', 's', 'c', 'h' , 'o' , 'o' , 'l'};
String Str2 = "";
Str2 = Str2.copyValueOf( Str1 );
System.out.println("返回結(jié)果:" + Str2);
Str2 = Str2.copyValueOf( Str1, 2, 6 );
System.out.println("返回結(jié)果:" + Str2);
}
}
以上程序執(zhí)行結(jié)果為:
返回結(jié)果:hello w3cschool
返回結(jié)果:llo w3
更多建議: