Java String copyValueOf(data, offset, count)
方法將返回一個String
,表示指定陣列中的字元序列。
語法
以下是此方法的語法 -
public static String copyValueOf(char[] data, int offset, int count)
data
- 字元陣列。offset
- 子陣列的初始偏移量。count
- 子陣列的長度。String
值。
public class Test {
public static void main(String args[]) {
char[] Str1 = { 'y', 'i', 'i', 'b', 'a', 'i', '.', 'c', 'o', 'm', 'd' };
String Str2 = "";
Str2 = Str2.copyValueOf(Str1, 2, 6);
System.out.println("Returned String: " + Str2);
}
}
執行上面範例程式碼,得到以下結果:
Returned String: ibai.c