Java String copyValueOf() 方法

实例

返回表示字符数组中某些字符的字符串:

  1. public class Main {
  2. public static void main(String[] args) {
  3. char[] myStr1 = {'H', 'e', 'l', 'l', 'o'};
  4. String myStr2 = "";
  5. myStr2 = myStr2.copyValueOf(myStr1, 0, 5);
  6. System.out.println("Returned String: " + myStr2);
  7. }
  8. }

定义与用法

copyValueOf() 方法返回表示字符数组字符的 String 字符串。

此方法返回一个新的 String 字符串数组,并将字符复制到其中。


语法


参数值

参数描述
data一个 char 数组
offset一个 int 值,表示字符数组的开始索引
count一个 int 值,表示字符数组的长度

技术细节

返回:一个字符串,表示字符数组的字符
Throws:StringIndexOutOfBoundsException - 如果偏移量为负数或超出范围,或者计数大于字符数组的长度,或者为负数

分类导航