java.lang.String.copyValueOf(char[] data, int offset, int count)方法範例


java.lang.String.copyValueOf(char[] data, int offset, int count) 方法返回表示指定的陣列中字元序列的字串。

宣告

以下是java.lang.String.copyValueOf()方法的宣告

public static String copyValueOf(char[] data, int offset, int count)

引數

  • data -- 這是字元陣列。

  • offset -- 這是最初的子陣列的偏移量。

  • count -- 這是子陣列的長度。

返回值

此方法返回表示指定的陣列中字元序列的字串。

異常

  • NA

例子

下面的例子顯示java.lang.String.copyValueOf()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    // character array
    char[] charArr = { 'C', 'O', 'M', 'P', 'I', 'L', 'E', ' ',
    'O', 'N', 'L', 'I', 'N', 'E' };

    /* returns a String that contains the characters of the character
    array with offset as 8 and length as 6 */
    String str = String.copyValueOf(charArr, 8, 6 );

    // prints the substring with length as 6 
    System.out.println(str);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

ONLINE