System.out.println('a' + 1 + "hello"); 输出结果: 98hello System.out.println("hello" + 'a' + 1); 输出结果: helloa1