當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.StringBuilder.getChars()用法及代碼示例



描述

這個java.lang.StringBuilder.getChars() 方法將此序列中的字符複製到目標字符數組中dst

要複製的第一個字符位於索引處srcBegin;要複製的最後一個字符位於索引處srcEnd - 1.要複製的字符總數為srcEnd - srcBegin.字符被複製到 dst 的子數組中,從 index 開始dstBegin並在索引處結束: dstbegin + (srcEnd-srcBegin) - 1

聲明

以下是聲明java.lang.StringBuilder.getChars()方法

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

參數

  • srcBegin- 這意味著在此偏移量處開始複製。

  • srcEnd- 這意味著在此偏移量處停止複製。

  • dst- 這是將數據複製到..的數組

  • dstBegin- 這是到 dst 的偏移量。

返回值

此方法不返回任何值。

異常

  • NullPointerException- 如果 dst 為空。

  • IndexOutOfBoundsException- 如果以下任何一項為真,則拋出此問題 -

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

示例

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

package com.tutorialspoint;

import java.lang.*;

public class StringBuilderDemo {

   public static void main(String[] args) {
  
      StringBuilder str = new StringBuilder("java programming");
      System.out.println("string = " + str);

      // char array
      char[] cArr = new char[]{'t','u','t','o','r','i','a','l','s'};

      // copy the chars from index 5 to index 10 into subarray of cArr
      // the offset into destination subarray is set to 3
      str.getChars(5, 10, cArr, 3);
      
      // print character array
      System.out.println(cArr);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

string = java programming
tutprogrs

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StringBuilder.getChars() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。