Java Character.UnicodeBlock of(char c) 方法



描述

Java 的 Character.UnicodeBlock of(char c) 方法返回表示包含给定字符的 Unicode 区块的对象,如果字符不是定义的区块的成员,则返回 null。

声明

以下是 java.lang.Character.UnicodeBlock.of() 方法的声明

public static Character.UnicodeBlock of(char c)

参数

c − 这是字符。

返回值

此方法返回表示此字符所属 Unicode 区块的 UnicodeBlock 实例,如果字符不属于任何 Unicode 区块,则返回 null。

异常

获取 BASIC_LATIN 的 UnicodeBlock 示例

以下示例显示了 Java Character.UnicodeBlock of() 方法的使用方法。我们使用 of() 方法来获取使用 - 和 = 的 BASIC_LATIN 的 UnicodeBlock。

package com.tutorialspoint;

public class CharacterUnicodeBlockDemo {
 
   public static void main(String[] args) {

      /* returns the object representing the Unicode block containing
         the given character */ 
      System.out.println(Character.UnicodeBlock.of('-'));
      System.out.println(Character.UnicodeBlock.of('='));
   }
}  

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

BASIC_LATIN
BASIC_LATIN

获取 CURRENCY_SYMBOLS 的 UnicodeBlock 示例

以下示例显示了 Java Character.UnicodeBlock of() 方法的使用方法。我们使用 of() 方法来获取使用 unicode 的 CURRENCY_SYMBOLS 的 UnicodeBlock。

package com.tutorialspoint;

public class CharacterUnicodeBlockDemo {
 
   public static void main(String[] args) {

      /* returns the object representing the Unicode block containing
         the given character */ 
      System.out.println(Character.UnicodeBlock.of('\u20ac'));
   }
}  

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

CURRENCY_SYMBOLS

获取 BASIC_LATIN 的 UnicodeBlock 示例

以下示例显示了 Java Character.UnicodeBlock of() 方法的使用方法。我们使用 of() 方法来获取使用字符 Z 的 BASIC_LATIN 的 UnicodeBlock。

package com.tutorialspoint;

public class CharacterUnicodeBlockDemo {
 
   public static void main(String[] args) {

      /* returns the object representing the Unicode block containing
         the given character */ 
      System.out.println(Character.UnicodeBlock.of('Z'));
   }
}  

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

BASIC_LATIN
java_lang_character.unicodeblock.htm
广告