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.
我需要返回 Ascii 代码(实际上是 Unicode 数字代码)的函数,并将该代码转换为 Unicode 字符一。它们是 .NET 中的 ChrW 和 AscW。例如:AscW("A") 是 65,ChrW(65) 是 A。
谢谢。
实际上,这些来自 VB.NET,而不是真正的 .NET Framework。
在 Java 中 achar是一种整数类型。您可以将其转换为int:
char
int
String s = "abc"; char a = s.charAt(0); int a_codepoint = (int)a; char x = (char)120;