Java Character isIdentifierIgnorable()方法

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

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

  • 不是空白的ISO控制字符

    • 'u0000' 通过 'u0008'

    • 'u000E' 通过'u001B'

    • 'u007F' 通过 'u009F'

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

1 语法

public static boolean isIdentifierIgnorable(char ch)

2 参数

ch:要测试的字符

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 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

 

热门文章

优秀文章