输出栏system.out.printIn("a:"+a),括号里面是什么意思呢?谢谢大神们
“a:”是一个字符串,所以要用双引号给引起来,+号是连接符。如:
int a=5;
System.out.println("a:"+a);
最终输出结果是:a:5