它是没有终止条件的循环,因此循环变为无限。

Infinite - 语法

for (;;) {
   //statement block
}

while - 语法

while(1) {
   //statement block
}

do…while - 语法

do {
   Block of statements;
} 
while(1);

参考链接

https://www.learnfk.com/arduino/arduino-infinite-loop.html