java.lang.Character.isDigit(int codePoint)方法範例


java.lang.Character.isDigit(int codePoint) 確定指定字元(Unicode程式碼點)是其中一位。

一個字元是數位,如果它的一般類別型別,通過的getType(程式碼點)所提供,是DECIMAL_DIGIT_NUMBER。

包含數位的一些Unicode字元範圍:

  • 'u0030' 通過 'u0039', ISO-LATIN-1 數位('0' through '9')

  • 'u0660' 通過'u0669', 阿拉伯 - 印度文數位

  • 'u06F0' 通過 'u06F9', 擴充套件阿拉伯語,印度語數位

  • 'u0966' 通過 'u096F', Devanagari 數位

  • 'uFF10' 通過 'uFF19', 全形數位

許多其他的字元範圍也包含數位。

宣告

以下是java.lang.Character.isDigit()方法的宣告

public static boolean isDigit(int codePoint)

引數

  • codePoint - 字元(Unicode程式碼點)進行測試

返回值

如果字元是數位,此方法返回true,否則返回false。

異常

  • NA

例子

下面的例子顯示lang.Character.isDigit()方法的使用。

package com.yiibai;

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 = 0x06f8;
      cp2 = 0x0c12;

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

      // assign isDigit results of ch1, ch2 to i1, i2
      b1 = Character.isDigit(cp1);
      b2 = Character.isDigit(cp2);

      String str1 = "cp1 represents a digit is " + b1;
      String str2 = "cp2 represents a digit is " + b2;

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

讓我們來編譯和執行上面的程式,這將產生以下結果:

cp1 represents a digit is true
cp2 represents a digit is false