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


Java Java.lang.Character.codePointCount()用法及代碼示例



描述

這個java.lang.Character.codePointCount(char[ ] a, int offset, int count)返回 char 數組參數的子數組中的 Unicode 代碼點數。

offset 參數是子數組第一個字符的索引,count 參數以字符為單位指定子數組的長度。子陣列中未配對的代理每個都算作一個代碼點。

聲明

以下是聲明java.lang.Character.codePointCount()方法

public static int codePointCount(char[] a, int offset, int count)

參數

  • a- 字符數組

  • offset- 給定字符數組中第一個字符的索引

  • count− 子數組的長度(以字符為單位)

返回值

此方法返回指定子數組中 Unicode 代碼點的數量。

異常

  • NullPointerException- 如果 a 為空。

  • IndexOutOfBoundsException- 如果 offset 或 count 為負,或者 offset + count 大於給定數組的長度。

示例

下麵的例子展示了 lang.Character.codePointCount() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class CharacterDemo {

   public static void main(String[] args) {

      // create a char array c and assign values
      char[] c = new char[] { 'a', 'b', 'c', 'd', 'e' };

      // create and assign value to offset, count
      int offset  = 1, count = 3;

      // create an int res
      int res;

      // assign result of codePointCount on subarray of c to res
      res = Character.codePointCount(c, offset, count);

      String str = "No. of Unicode code points is " + res;

      // print res value
      System.out.println( str );
   }
}

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

No. of Unicode code points is 3

相關用法


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