字符案例演示ASCII码表的概述字符串案例演示+在有字符串参与中被称为字符串连接符ASCII码表完整版.doc 字符案例演示System.out.println('a');System.out.println('a'+1);// 通过看结果知道'a'的值是多少(ASCII码表) ASCII码表的概述 记住三个值: ‘0’ 48‘A’ 65‘a’ 97 字符串案例演示System.out.println("hello"+'a'+1);System.out.println('a'+1+"hello"); +在有字符串参与中被称为字符串连接符System.out.println("5+5="+5+5);System.out.println(5+5+"=5+5");