码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 无限for循环的bug

时间:2016-03-01 14:52:17      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:无限循环

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

标签:无限循环

原文地址:http://215427197.blog.51cto.com/4022018/1746198

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!