嵌入式系统中经常要用到无限循环,你怎么样用 C 编写死循环呢?for :for(;;) {}goto:start: goto start;while: while(1) {}递归:void loop() { return loop(); } 错的,会栈溢出