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