Java.lang.Character.isWhitespace() 方法

描述

java.lang.Character.isWhitespace(int codePoint) 根据 Java 判断指定字符(Unicode 码点)是否为空格。 一个字符是一个 Java 空白字符当且仅当它满足以下条件之一 −

  • 它是 Unicode 空格字符(SPACE_SEPARATOR、LINE_SEPARATOR 或 PARAGRAPH_SEPARATOR),但也不是不间断空格('\u00A0'、'\u2007'、'\u202F')。
  • It is '\t', U+0009 HORIZONTAL TABULATION.
  • It is '\n', U+000A LINE FEED.
  • It is '\u000B', U+000B VERTICAL TABULATION.
  • It is '\f', U+000C FORM FEED.
  • It is '\r', U+000D CARRIAGE RETURN.
  • It is '\u001C', U+001C FILE SEPARATOR.
  • It is '\u001D', U+001D GROUP SEPARATOR.
  • It is '\u001E', U+001E RECORD SEPARATOR.
  • It is '\u001F', U+001F UNIT SEPARATOR.

声明

以下是 java.lang.Character.isWhitespace() 方法的声明。

public static boolean isWhitespace(int codePoint)

参数

codePoint − 要测试的字符(Unicode 代码点)


返回值

如果字符是 Java 空白字符,此方法返回 true,否则返回 false。


异常

NA


示例

下面的例子展示了 lang.Character.isWhitespace() 方法的使用。

package com.tutorialspoint;

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 = 0x001c; // represents FILE SEPARATOR
      cp2 = 0x0abc;

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

      /**
       *  check if cp1, cp2 represent whitespace characters 
       *  and assign results to b1, b2
       */
      b1 = Character.isWhitespace(cp1);
      b2 = Character.isWhitespace(cp2);

      String str1 = "cp1 represents Java whitespace character is " + b1;
      String str2 = "cp2 represents Java whitespace character is " + b2;

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

让我们编译并运行上面的程序,这将产生下面的结果 −

cp1 represents Java whitespace character is true
cp2 represents Java whitespace character is false