Java Character getType()方法

java.lang.Character.getType(int codePoint) 返回值表示一个字符的一般类别。

1 语法

public static int getType(int codePoint)

2 参数

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

3 返回值

此方法返回类型为int表示字符的常规类别的值。

4 示例 

package com.yiidian;

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

      // create 2 int primitives i1, i2
      int i1, i2;

      // assign getType values of cp1, cp2 to i1, i2
      i1 = Character.getType(cp1);
      i2 = Character.getType(cp2);

      /**
       *  value 9 represents DECIMAL_DIGIT_NUMBER
       *  value 2 represents LOWERCASE_LETTER
       */

      String str1 = "Category of cp1 is " + i1;
      String str2 = "Category of cp2 is " + i2;

      // print i1, i2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

输出结果为:

Category of cp1 is 9
Category of cp2 is 2

 

热门文章

优秀文章