static String copyValueOf(char[] data, int offset, int count)

Java String类Java String类

copyValueOf() 方法有两种形式:

语法

public static String copyValueOf(char[] data)

或

public static String copyValueOf(char[] data, int offset, int count)
w∩¤々3∩¤々x∩¤々u∩¤々e.com提供本手册内容,请勿盗用!

参数

返回值

如字符串与指定 StringBuffer 表示相同的字符序列,则返回 true;否则返回 false。

实例

public class Test {
	public static void main(String args[]) {
		char[] Str1 = {'h', 'e', 'l', 'l', 'o', ' ', 'W', '3', 'x', 'u', 'e'};
		String Str2 = "";

		Str2 = Str2.copyValueOf( Str1 );
		System.out.println("返回结果:" + Str2);

		Str2 = Str2.copyValueOf( Str1, 2, 6 );
		System.out.println("返回结果:" + Str2);
	}
}
w∩¤々3∩¤々x∩¤々u∩¤々e.com提供本手册内容,请勿盗用!

以上程序执行结果为:

返回结果:hello W3xue
返回结果:llo W3
w∩¤々3∩¤々x∩¤々u∩¤々e.com提供本手册内容,请勿盗用!

Java String类Java String类