Topic: 关于流程控制帮我看看 |
Print this page |
1.关于流程控制帮我看看 | Copy to clipboard |
Posted by: zip2007 Posted on: 2007-06-25 13:07 public class BreakAndContinue { public static void main(String[] args) { for(int i = 0; i < 100; i++) { if(i == 74) break; // Out of for loop if(i % 9 != 0) continue; // Next iteration System.out.println; } int i = 0; // An "infinite loop": while(true) { i++; int j = i * 27; if(j == 1269) break; // Out of loop if(i % 10 != 0) continue; // Top of loop System.out.println; } } } ///:~ 结果输出如下: 0 9 18 27 36 45 54 63 72 10 20 30 40 问题:为什么一直到第一个打印语句全部执行完才执行第二个打印语句,跟时间片的分配有关么 哪位知道的说下 谢了 |
2.Re:关于流程控制帮我看看 [Re: zip2007] | Copy to clipboard |
Posted by: zip2007 Posted on: 2007-06-25 13:33 我知道为什么了 犯了一个低级的错误 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |