如果你要输出内容是字符串的话,就得有"" ;比如说要输出hello world 就是System.out.println("hello world");
当然如果要输出变量的话就得用+号,
举例:
public class Test{
public static void main(String args[]){
String a = "hello world";
int b = 2013;
//输出 heima,hello world
System.out.println("heima,"+a); //这里a是一个变量
//输出 a的值
System.out.println(a);//如果输出内容只是变量的话,直接用就可以了
//输出 heima===2013===hello world
System.out.println("heima==="+b+"==="+a);//+号起到的连接的作用
}
} |