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.yiibai; 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