java.lang.Character.isUnicodeIdentifierStart(int codePoint) 確定指定字元(Unicode程式碼點)是允許作為Unicode識別符號的第一個字元。
字元以一個Unicode識別符號開始,當且僅當下面的一個條件為true:
isLetter(codePoint) 返回 true
getType(codePoint) 返回LETTER_NUMBER.
以下是java.lang.Character.isUnicodeIdentifierStart()方法的宣告
public static boolean isUnicodeIdentifierStart(int codePoint)
codePoint - 進行測試的字元(Unicode程式碼點)
方法適用於字元以一個Unicode識別符號開始則返回true,否則返回false。
NA
下面的例子顯示lang.Character.isUnicodeIdentifierStart()方法的使用。
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 = 0x037e; // represents GREEK QUESTION MARK cp2 = 0x05d1; // represents HEBREW LETTER BET // create 2 boolean primitives b1, b2 boolean b1, b2; /** * check if cp1, cp2 may start a Unicode identifier * and assign results to b1, b2 */ b1 = Character.isUnicodeIdentifierStart(cp1); b2 = Character.isUnicodeIdentifierStart(cp2); String str1 = "cp1 may start a Unicode identifier is " + b1; String str2 = "cp2 may start a Unicode identifier is " + b2; // print b1, b2 values System.out.println( str1 ); System.out.println( str2 ); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
cp1 may start a Unicode identifier is false cp2 may start a Unicode identifier is true