Java.lang.Character.codePointCount() 方法

描述

java.lang.Character.codePointCount(CharSequence seq, int beginIndex, int endIndex)返回指定字符序列的文本范围内的Unicode码点数。

文本范围从指定的 beginIndex 开始,并延伸到索引 endIndex - 1 处的字符。因此,文本范围的长度(以字符为单位)为 endIndex-beginIndex。 文本范围内的未配对代理项分别计为一个代码点。


声明

以下是 java.lang.Character.codePointCount() 方法的声明。

public static int codePointCount(CharSequence seq, int beginIndex, int endIndex)

参数

  • seq − 字符序列

  • beginIndex − 文本范围的第一个字符的索引

  • endIndex − 文本范围的最后一个字符之后的索引


返回值

此方法返回指定文本范围内的 Unicode 代码点数。


异常

  • NullPointerException − 如果 seq 为空。

  • IndexOutOfBoundsException - 如果 beginIndex 为负数,或者 endIndex 大于给定序列的长度,或者 beginIndex 大于 endIndex。


示例

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

package com.tutorialspoint;

import java.lang.*;

public class CharacterDemo {

   public static void main(String[] args) {

      // create a CharSequence seq and assign value
      CharSequence seq = "Hello World!";

      // create and assign value to bi, ei
      int bi = 4, ei = 8;

      // create an int res
      int res;

      // assign result of codePointCount on seq to res using bi, ei
      res = Character.codePointCount(seq, bi, ei);

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

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

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

No. of Unicode code points is 4