Java - Character isUnicodeIdentifierPart() 方法



Java 的 Character isUnicodeIdentifierPart() 方法确定指定字符是否可以作为 Unicode 标识符的一部分(除了第一个字符以外)。

当且仅当以下语句之一为真时,字符可以作为 Unicode 标识符的一部分:

  • 它是字母

  • 它是连接标点符号(例如 '_')

  • 它是数字

  • 它是数字字母(例如罗马数字字符)

  • 它是组合字符

  • 它是非间距标记

  • isIdentifierIgnorable() 方法对此字符返回 true。

此方法以两种多态形式出现,具有相同的返回类型,但参数不同。

语法

以下是 Java Character isUnicodeIdentifierPart() 方法的语法

public static boolean isUnicodeIdentifierPart(char ch)
(or)
public static boolean isUnicodeIdentifierPart(int codePoint)

参数

  • ch − 要测试的字符

  • codePoint − 要测试的 Unicode 代码点

返回值

如果字符可以作为 Unicode 标识符的一部分,则此方法返回 true,否则返回 false。

示例

以下示例显示了 Java Character isUnicodeIdentifierPart(char ch) 方法的用法。

package com.tutorialspoint;
import java.lang.*;
public class CharacterDemo {
   public static void main(String[] args) {

      // create 2 char primitives ch1, ch2
      char ch1, ch2;

      // assign values to ch1, ch2
      ch1 = '~';
      ch2 = '1';

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

      /**
       *  check if ch1, ch2 may be part of a Unicode identifier
       *  and assign results to b1, b2.
       */
      b1 = Character.isUnicodeIdentifierPart(ch1);
      b2 = Character.isUnicodeIdentifierPart(ch2);
      String str1 = ch1 + " may be part of a Unicode identifier is " + b1;
      String str2 = ch2 + " may be part of a Unicode identifier is " + b2;

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

输出

让我们编译并运行上述程序,这将产生以下结果:

~ may be part of a Unicode identifier is false
1 may be part of a Unicode identifier is true

示例

以下示例显示了 Java Character isUnicodeIdentifierPart(int codePoint) 方法的用法。

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 = 0x053e; // represents ARMENIAN CAPITAL LETTER CA
      cp2 = 0x0040; // represents @

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

      /**
       *  check if cp1, cp2 may be part of a Unicode identifier
       *  and assign results to b1, b2.
       */
      b1 = Character.isUnicodeIdentifierPart(cp1);
      b2 = Character.isUnicodeIdentifierPart(cp2);
      String str1 = "cp1 may be part of a Unicode identifier is " + b1;
      String str2 = "cp2 may be part of a Unicode identifier is " + b2;

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

输出

让我们编译并运行上述程序,这将产生以下结果:

cp1 may be part of a Unicode identifier is true
cp2 may be part of a Unicode identifier is false

示例

此示例检查作为参数传递给方法的罗马数字是否为 Unicode 标识符的一部分。

import java.lang.*;
public class UnicodeIdentifierDemo{
   public static void main(String []args){
      char c1 = '\u2167'; // code point of roman numeral 8
      boolean b1 = Character.isUnicodeIdentifierPart(c1);
      System.out.println(b1);
   }
}

输出

上述程序的输出如下:

true

示例

如果 Character.isIdentifierIgnorable() 方法对输入字符返回 true,则该方法也返回 true。让我们看一个例子来证明这一点:

import java.lang.*;
public class UnicodeIdentifierDemo {
   public static void main(String []args){
      char c1 = '\u0000';
      boolean b1 = Character.isIdentifierIgnorable(c1);
      boolean b2 = Character.isUnicodeIdentifierPart(c1);
      System.out.println(b1);
      System.out.println(b2);
      System.out.println("---------Another Case-----------");
      char c2 = 'a';
      boolean b3 = Character.isIdentifierIgnorable(c2);
      boolean b4 = Character.isUnicodeIdentifierPart(c2);
      System.out.println(b3);
      System.out.println(b4);
   }
}

输出

在上面的程序中,并非所有 Character.isUnicodeIdentifierPart() 方法的 true 返回值,Character.isIdentifierIgnorable() 方法的返回值也都是 true。但是,对于 Character.isIdentifierIgnorable() 方法的所有 true 返回值,Character.isUnicodeIdentifierPart() 方法的返回值也都是 true。

输出如下

true
true
---------Another Case-----------
false
true
java_lang_character.htm
广告