欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

char类型数字转int

程序员文章站 2022-07-15 09:18:58
...

char类型数字强转int,输出的是对应的ASCII值,如 ‘9’ 对应的值是 57

public static void main(String[] args) {
    System.out.println((int) '0' + " " + (int) '9');
}

结果:
char类型数字转int

最简单的方法 char - '0'

public static void main(String[] args) {
    System.out.println((int) '0' + " " + (int) '9');
    System.out.println('9' - '0');
    System.out.println('0' - '0');
}

结果:
char类型数字转int

附:ASCII表
char类型数字转int

相关标签: java char