Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
方法Character.getType(char)返回整数。当然,我可以将它与所有常量进行比较,例如OTHER_PUNCTUATION常量和推断类型。但是这些常量有几十个,手动编码似乎不好。
Character.getType(char)
OTHER_PUNCTUATION
有没有什么函数可以转换OTHER_PUNCTUATION为“Sm”Unicode 类别?
JRE 实现中没有使用所有这些常量,例如 Character.OTHER_PUNCTUATION。JRE 源代码中没有对它们的引用。它们只是在那里定义但未使用。
所以,我想说除了迭代这 30 个常量并确定类型之外,没有其他解决方案。