共计 511 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用 char
类型的变量表示一个字符,并使用 int
类型的变量表示该字符的 ASCII 码。
下面是一些示例代码,演示了如何获取字符的 ASCII 码:
- 使用类型转换:
char ch = 'A';
int ascii = (int) ch;
System.out.println("ASCII 码:" + ascii);
- 使用
Character.getNumericValue()
方法:
char ch = 'A';
int ascii = Character.getNumericValue(ch);
System.out.println("ASCII 码:" + ascii);
- 使用
Character.toString().codePointAt()
方法:
char ch = 'A';
int ascii = Character.toString(ch).codePointAt(0);
System.out.println("ASCII 码:" + ascii);
请注意,ASCII 码范围为 0 -127。如果要获取 Unicode 码,则可以使用 Character.codePointAt()
方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完