这只要知道字符和字符串参与运算时的规则,不难理解.
任何数据类型用+与字符串相连接都会产生新的字符串
比如:
- System.out.println('a' + 1);
- System.out.println((char)('a' + 1));
- System.out.println("hello"+'a'+1);
- System.out.println('a'+1+"hello");
- System.out.println(" 5 + 5 = " + (5 + 5));
复制代码
打印结果:
98
b
helloa1
98hello
5 + 5 = 10
|