//Sample1
public class Test
{
public static void main(String args[])
{
int x = 1;
while( x < 10 )
{
System.out.print(x);
x++;
}
}
}
以上代码编译运行结果为:
123456789
————————————————————————————————————————
//Sample2
public class Test
{
public static void main(String[] args)
{
for (int x = 1; x < 10; x++)
{
System.out.println(x);
}
}
}
以上代码编译运行结果为:
1
2
3
4
5
6
7
8
9
————————————————————————————————————————
有次看见别人的代码(Sample1),发现loop完之后输出的结果竟然都在同一行。而自己的(Sample2)loop输出结果是一列。
最初没注意到一个是print()一个是println(),还以为是两种循环导致的输出格式不同。
后来明白了原来println()是指行输出,一个println()的内容为一行。而print()是标准输出,不换行。