Java的死循环
程序员文章站
2023-12-26 10:38:45
...
一、概述
死循环就是指的是永不会结束的循环,也即是循环的判断条件永远为true。
二、分类
-
for(;????{}
-
while(true){}
三、实例
-
for
public static void main(String[] args) { for(;;){ System.out.println("EuropeanSheik"); } }
-
while
public static void main(String[] args) { while(true){ System.out.println("EuropeanSheik"); } }
-
do.while
public static void main(String[] args) { do { System.out.println("EuropeanSheik"); } while(true); }