本帖最后由 天下 于 2013-9-3 06:59 编辑
几种我们不注意的死循环- <div class="blockcode"><blockquote>class whil{
- public static void main(String[] args){
- /*int x=1;
- while(x<3);{ //死循环,
- sop(x+"holle");
- x++;
- }
- */
- whl();
-
- }
- /*public static void fo(){
- for(){} //死循环,条件默认为真
- }*/
-
- public static void whl(){
-
- while(true){ //死循环
- sop("你好");
- }
- }
- public static void sop(Object obj){
- System.out.println(obj);
- }
- }
复制代码 |