char a = '7'; // 对应的Ascii码值:55 System.out.println((int)a); // 预期的值:7 System.out.println((int)a - '0');