C++ 无限for循环的bug
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 无限for循环的bug相关的知识,希望对你有一定的参考价值。
for (uint8 i = 0; i < pt.instance_struct.size(); i++) { total += pt.instance_struct[i].end_row - pt.instance_struct[i].beg_row + 1; if (i == 255)cout << "i is 255" << endl; } 现象:无限循环。 原因:变量i为8位int,当i=255执行完后,执行i++,此时i=0,又从新开始循环,如此不停循环。
以上是关于C++ 无限for循环的bug的主要内容,如果未能解决你的问题,请参考以下文章
为啥我的代码在执行时的初始嵌套 for 循环中进入无限循环?