博客已持续运行3487天
生活啊是一艘船,而你是天空中的飞鸟。
进入博客
不要停下脚步哪怕前方没有光
2.11
2017
Day2 笔记 字符和字符串参与运算
 
class Demo4_DataTypeConversion {
	public static void main(String[] args) {
		//System.out.println('a' + 1);			//98,因为有ASCII码表,a字符对应的是int类型的97
		//System.out.println((char)('a'+1));		//b

		System.out.println("hello"+'a'+1);		//任何数据类型用+号与字符串相连接都会产生新的字符串
		System.out.println('a'+1+"hello");

		System.out.println("5 + 5 =" + 5 + 5);//5 + 5 = 55
		System.out.println("5 + 5 =" +( 5 + 5));//5 + 5 = 10

	}
}
  •  System.out.println('a');

    • System.out.println('a'+1);
    • 通过看结果知道'a'的值是多少,由此引出ASCII码表

  • B:ASCII码表的概述
    • 记住三个值:
      • '0' 48
      • 'A' 65
      • 'a' 97
  • C:案例演示
    • System.out.println("hello"+'a'+1);
    • System.out.println('a'+1+"hello");
  • D:+在有字符串参与中被称为字符串连接符
    • System.out.println("5+5="+5+5);
    • System.out.println(5+5+"=5+5");
上一篇
写评论
昵称: 主页: 邮箱:
回到顶部
Powered by 顾羽宸. Written by . 浙icp备87656888号
在路上...     14.69ms