当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.String.getChars()用法及代码示例



描述

这个java.lang.String.getChars() 方法将此字符串中的字符复制到目标字符数组中。

要复制的第一个字符位于索引处srcBegin,要复制的最后一个字符在索引处srcEnd-1即要复制的字符总数是srcEnd-srcBegin

字符被复制到子数组中dst从索引开始dstBegin并在索引处结束:dstbegin + (srcEnd-srcBegin) - 1

声明

以下是声明java.lang.String.getChars()方法

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

参数

  • srcBegin- 这是要复制的字符串中第一个字符的索引。

  • srcEnd- 这是要复制的字符串中最后一个字符之后的索引。

  • dst- 这是目标数组。

  • dstBegin- 这是目标数组中的起始偏移量。

返回值

此方法不返回任何值。

异常

IndexOutOfBoundsException- 如果以下任何一项为真,则抛出此异常 -

srcBegin is negative
srcBegin is greater than srcEnd
srcEnd is greater than the length of this string
dstBegin is negative
dstBegin+(srcEnd-srcBegin) is larger than dst.length

示例

下面的例子展示了 java.lang.String.getChars() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) {

      String str = "Website:www.tutorialspoint.com";
      System.out.println(str);
   
      // character array
      char[] chararr = new char[30];
   
      /* copies characters from starting and ending index into the destination 
         character array */
      str.getChars(12, 26, chararr, 0);

      // print the character array
      System.out.print("Value of character array:");
      System.out.println(chararr);
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

Website:www.tutorialspoint.com
Value of character array:tutorialspoint

相关用法


注:本文由纯净天空筛选整理自 Java.lang.String.getChars() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。