它是没有终止条件的循环,因此循环变为无限。
for (;;) { // statement block }
while(1) { // statement block }
do { Block of statements; } while(1);