在java里,System.out.println(“a+b=”+(a+b)):这个中间的加号有什么

2024-11-27 14:33:09
推荐回答(1个)
回答1:

在System.out.println中输出多个字符串之间或字符串和变量之间,需用
'
+
'
来连接。这就是'+'的作用。