1.for(;;)和while(true)的区别 编译前 编译后 while (1); mov eax,1 test eax,eax je foo+23h jmp foo+18h 编译前 编译后 for (;;); jmp foo+23h 来源:http://www.cnblogs.com/chendeqiang/p/11457916.html 标签 jmp