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


Java Java.lang.Character.codePointAt()用法及代码示例



描述

这个java.lang.Character.codePointAt(char[ ] a, int index, int limit)返回 char 数组给定索引处的代码点,其中只能使用索引小于 limit 的数组元素。

如果char数组中给定索引处的char值在高代理范围内,后面的索引小于限制,并且后面索引处的char值在低代理范围内,则补充码点对应于这个代理对被返回。否则,返回给定索引处的 char 值。

声明

以下是声明java.lang.Character.codePointAt()方法

public static int codePointAt(char[] a, int index, int limit)

参数

  • a- 字符数组

  • index- 要转换的字符数组中字符值(Unicode 代码单元)的索引

  • limit− 可在 char 数组中使用的最后一个数组元素之后的索引

返回值

此方法返回给定索引处的 Unicode 代码点。

异常

  • NullPointerException- 如果 a 为空。

  • IndexOutOfBoundsException- 如果 index 参数为负数或不小于 limit 参数,或者如果 limit 参数为负数或大于 char 数组的长度。

示例

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

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 inetgers index, limit
      int index  = 1, limit = 3;

      // create an int res
      int res;

      // assign result of codePointAt on array c at index to res using limit
      res = Character.codePointAt(c, index, limit);

      String str = "Unicode code point is " + res;

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

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

Unicode code point is 98

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Character.codePointAt() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。