扩展阅读
当前位置: 编程语言>java/jsp
java命名空间java.lang类character的类成员方法: issupplementarycodepoint定义及介绍
发布时间:2014-2-17
本文导语:
issupplementarycodepoint
public static boolean issupplementarycodepoint(int codepoint)
确定指定字符(unicode 代码点)是否在增补字符范围内。该方法调用以下表达式:
codepoint >= 0x10000 && codepoint
参数:codepoint - 要测试的字符(unicode 代码...