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