java.lang.Character.isIdentifierIgnorable(char ch) 確定指定的字元應被視為一個可忽略的字元在Java識別符號或Unicode識別符號。
下面Unicode字元都忽略了Java識別符號或Unicode識別符號:
不是空白的ISO控制字元
'u0000' 通過 'u0008'
'u000E' 通過'u001B'
'u007F' 通過 'u009F'
具有格式FORMAT普通類值的所有字元
以下是java.lang.Character.isIdentifierIgnorable()方法的宣告
public static boolean isIdentifierIgnorable(char ch)
ch - 要測試的字元
如果字元是可忽略的控制字元,可能是一個Java或Unicode識別符號的一部分此方法返回true,否則返回false。
NA
下面的例子顯示lang.Character.isIdentifierIgnorable()方法的使用。
package com.yiibai; import java.lang.*; public class CharacterDemo { public static void main(String[] args) { // create 2 character primitives ch1, ch2 char ch1, ch2; // assign values to ch1, ch2 ch1 = 'u0000'; ch2 = '8'; // create 2 boolean primitives b1, b2 boolean b1, b2; // assign isIdentifierIgnorable results of ch1, ch2 to b1, b2 b1 = Character.isIdentifierIgnorable(ch1); b2 = Character.isIdentifierIgnorable(ch2); String str1 = "ch1 is an ignorable control character is " + b1; String str2 = "ch2 is an ignorable control character is " + b2; // print b1, b2 values System.out.println( str1 ); System.out.println( str2 ); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
ch1 is an ignorable control character is true ch2 is an ignorable control character is false