标签:ring system rgs str span 连接 提高优先级 类型 需要
结论
任何数据类型用+与字符串相连接都会产生新的字符串
1 public class Test1_DataTypeConversion { 2 3 public static void main(String[] args) { 4 5 System.out.println(‘a‘+1); //结果为98 6 System.out.println((char)(‘a‘+1)); // 结果为b 7 System.out.println("hello" + ‘a‘ + 1); // 结果为helloa1 8 System.out.println(‘a‘+"hello"+1); // 结果为ahello1 9 System.out.println(‘a‘+1+"hello");//结果为98hello 10 11 12 }
第9行代表的运算顺序是从左到右,先计算了‘a‘+1的结果再与"hello"进行运算
需要注意的是运算顺序,使用空格可以提高优先级
标签:ring system rgs str span 连接 提高优先级 类型 需要
原文地址:http://www.cnblogs.com/panw3i/p/6328389.html