首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 系统运维 >

System.out是打印仍是作为条件求值

2012-10-27 
System.out是打印还是作为条件求值?Test 写道public class Test {public static void main(String[] args)

System.out是打印还是作为条件求值?
Test 写道public class Test {


public static void main(String[] args) {

for(int i=0;i<5;System.out.println("the number"+(i++))){
???System.out.println(i);
?}}}
结果: 写道0
the number0
1
the number1
2
the number2
3
the number3
4
the number4
?

?System.out.println("")平时都用作打印,在控制台输出,没想到还能这么用,可以作为一个条件!

热点排行