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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。