for/while/dowhile最简单死循环
package basis.week01;
public class Test02 {
public static void main(String[] args) {
//记住手动停止
// for(;;) {//for简单死循环
//
// }
// while(true) {//while简单死循环
//
// }
// do {//dowhile简单死循环
//
// }while(true);
}
}