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


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



描述

這個java.lang.Character.isUnicodeIdentifierPart(int codePoint)確定指定的字符(Unicode 代碼點)是否可以作為 Unicode 標識符的一部分而不是第一個字符。

當且僅當以下語句之一為真時,字符才可能是 Unicode 標識符的一部分 -

  • 這是一封信

  • 它是一個連接標點符號(如 '_')

  • 它是一個數字

  • 它是一個數字字母(如羅馬數字字符)

  • 這是一個組合標記

  • 它是一個非間距標記

  • 對於此字符,isIdentifierIgnorable 返回 true。

聲明

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

public static boolean isUnicodeIdentifierPart(int codePoint)

參數

codePoint- 要測試的字符(Unicode 代碼點)

返回值

如果字符可能是 Unicode 標識符的一部分,則此方法返回 true,否則返回 false。

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class CharacterDemo {

   public static void main(String[] args) {

      // create 2 int primitives cp1, cp2
      int cp1, cp2;

      // assign values to cp1, cp2
      cp1 = 0x053e; // represents ARMENIAN CAPITAL LETTER CA
      cp2 = 0x0040; // represents @

      // create 2 boolean primitives b1, b2
      boolean b1, b2;

      /**
       *  check if cp1, cp2 may be part of a Unicode identifier
       *  and assign results to b1, b2.
       */
      b1 = Character.isUnicodeIdentifierPart(cp1);
      b2 = Character.isUnicodeIdentifierPart(cp2);

      String str1 = "cp1 may be part of a Unicode identifier is " + b1;
      String str2 = "cp2 may be part of a Unicode identifier is " + b2;

      // print b1, b2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

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

cp1 may be part of a Unicode identifier is true
cp2 may be part of a Unicode identifier is false

相關用法


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