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


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



描述

這個java.lang.Character.codePointBefore(char[ ] a, int index)返回字符數組的給定索引之前的代碼點。

如果char數組中(index - 1)處的char值在低代理範圍內,則(index - 2)不為負,並且char數組中(index - 2)處的char值在高代理範圍內代理範圍,則返回與此代理對對應的補充代碼點。否則,返回 (index - 1) 處的字符值。

聲明

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

public static int codePointBefore(char[] a, int index)

參數

  • a- 字符數組

  • index- 應該返回的代碼點後麵的索引

返回值

此方法返回給定索引之前的 Unicode 代碼點值。

異常

  • NullPointerException- 如果 a 為空。

  • IndexOutOfBoundsException- 如果索引參數小於 1 或大於字符數組的長度。

示例

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

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 index
      int index  = 2;

      // create an int res
      int res;

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

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

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

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

Unicode code point is 98

相關用法


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