Java String getChars() 方法

返回 Java Strings 类


getChars() 方法将此字符串中的字符复制到目标字符数组中。

语法

public void getChars(int srcBegin, int srcEnd, char[] dst,  int dstBegin)

参数

  • srcBegin - 要复制的字符串中第一个字符的索引。
  • srcEnd - 要复制的字符串中最后一个字符之后的索引。
  • dst - 目标数组。
  • dstBegin - 目标数组中的起始偏移量。

    返回值

    它不返回任何值,但抛出 IndexOutOfBoundsException。

示例

public class Main {

   public static void main(String args[]) {
      String Str1 = new String("Welcome to jiyik.com");
      char[] Str2 = new char[7];
      try {
         Str1.getChars(2, 9, Str2, 0);
         System.out.print("Copied Value = " );
         System.out.println(Str2 );
      } catch ( Exception ex) {
         System.out.println("Raised exception...");
      }
   }
}

运行示例

上面示例编译运行结果如下

Copied Value = lcome t

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便