2.23 算术运算符+的多种用法

/*
+的用法:
	A:加法
	B:正号
	C:字符串连接符
*/
class OperatorDemo3 {
	public static void main(String[] args) {
		// 加法
		System.out.println(3 + 4);

		// 正号
		System.out.println(+4);
		// 负号
		System.out.println(-4);

		System.out.println('a');
		System.out.println('a' + 1); // 这里是加法

		// 字符串连接符
		System.out.println("hello" + 'a' + 1);
		System.out.println('a' + 1 + "hello");
	}
}


你可能感兴趣的:(2.23 算术运算符+的多种用法)