Java Character isValidCodePoint()方法
java.lang.Character.isValidCodePoint(int codePoint) 确定指定的代码点是否是一个有效的Unicode代码点值。
1 语法
public static boolean isValidCodePoint(int codePoint)
2 参数
codePoint:要进行测试的Unicode代码点
3 返回值
如果指定的代码点值在MIN_CODE_POINT和MAX_CODE_POINT(含)之间此方法返回true,否则返回false。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Character isValidCodePoint()方法
*/
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 = 0x0123;
cp2 = 0x123fff;
// create 2 boolean primitives b1, b2
boolean b1, b2;
/**
* check if cp1, cp2 are valid Unicode code points
* and assign results to b1, b2
*/
b1 = Character.isValidCodePoint(cp1);
b2 = Character.isValidCodePoint(cp2);
String str1 = "cp1 is a valid Unicode code point is " + b1;
String str2 = "cp2 is a valid Unicode code point is " + b2;
// print b1, b2 values
System.out.println( str1 );
System.out.println( str2 );
}
}
输出结果为:
cp1 is a valid Unicode code point is true
cp2 is a valid Unicode code point is false
热门文章
优秀文章