Java Character isUnicodeIdentifierPart()方法
java.lang.Character.isUnicodeIdentifierPart(int codePoint) 确定指定字符(Unicode代码点)可能是Unicode标识符中除首字符以外的部分。
字符可以是Unicode标识符的一部分,当且仅当下列一个语句是正确的:
-
它是一个字母
-
它是一个连接标点字符(如“_”)
-
它是一个数字
-
它是一个数字字母(如罗马数字字符)
-
它是一个组合标志
-
它是一个非空格标记
-
isIdentifierIgnorable此字符返回true。
1 语法
public static boolean isUnicodeIdentifierPart(int codePoint)
2 参数
codePoint:进行测试的字符(Unicode代码点)
3 返回值
如果字符可以是Unicode标识符的一部分此方法返回true,否则返回false。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Character isUnicodeIdentifierPart()方法
*/
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 = 0x053e; // represents ARMENIAN CAPITAL LETTER CA
cp2 = 0x0040; // represents @
// create 2 boolean primitives b1, b2
boolean b1, b2;
/**
* check if cp1, cp2 may be part of a Unicode identifier
* and assign results to b1, b2.
*/
b1 = Character.isUnicodeIdentifierPart(cp1);
b2 = Character.isUnicodeIdentifierPart(cp2);
String str1 = "cp1 may be part of a Unicode identifier is " + b1;
String str2 = "cp2 may be part of a Unicode identifier is " + b2;
// print b1, b2 values
System.out.println( str1 );
System.out.println( str2 );
}
}
输出结果为:
cp1 may be part of a Unicode identifier is true
cp2 may be part of a Unicode identifier is false
热门文章
优秀文章