——java定义变量,注意事项计算机底层存储char ch = ‘a’; // a在ASCII表中等于96System.out.println(ch + 1); // 在运算的时候会自动ASCII表转换System.out.println(ch); // 自己输出就是输出字符