Java Character isIdentifierIgnorable()方法

java.lang.Character.isIdentifierIgnorable(int codePoint) 确定指定字符(Unicode代码点)应被视为一个可忽略的字符在Java标识符或Unicode标识符。

下面Unicode字符都忽略了Java标识符或Unicode标识符:

  • 不是空白的ISO控制字符

    • 'u0000'  通过 'u0008'

    • 'u000E'  通过 'u001B'

    • 'u007F'  通过  'u009F'

  • 具有格式FORMAT普通类值的所有字符

1 语法

public static boolean isIdentifierIgnorable(int codePoint)

2 参数

codePoint:字符(Unicode代码点)进行测试

3 返回值

如果字符是可忽略的控制字符,并且可能是Java或Unicode标识符的一部分,则此方法返回true,否则返回false

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Character isIdentifierIgnorable()方法
 */
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 = 0x008f;
      cp2 = 0x0abc;

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

      // assign isIdentifierIgnorable results of cp1, cp2 to b1, b2
      b1 = Character.isIdentifierIgnorable(cp1);
      b2 = Character.isIdentifierIgnorable(cp2);

      String str1 = "cp1 is an ignorable control character is "+b1;
      String str2 = "cp2 is an ignorable control character is "+b2;

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

输出结果为:

cp1 is an ignorable control character is true
cp2 is an ignorable control character is false

 

热门文章

优秀文章