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