下面的代码在调试模式和发布模式下生成不同的结果 (使用 VisualStudio2008) :
int _tmain(int argc, _TCHAR* argv[])
{
for( int i = 0; i < 17; i++ )
{
int result = i * 16;
if( result > 255 )
{
result = 255;
}
printf("i:%2d, result = %3d\n", i, result) ;
}
return 0;
}
调试模式的输出,正如预期的那样:
i: 0, result = 0
i: 1, result = 16
(...)
i:14, result = 224
i:15, result = 240
i:16, result = 255
释放模式的输出,其中 i: 15结果不正确:
i: 0, result = 0
i: 1, result = 16
(...)
i:14, result = 224
i:15, result = 255
i:16, result = 255
在 VisualStudio 的发布模式下选择“优化-> 不优化”,输出结果将是正确的。然而,我想知道为什么优化过程可能导致错误的输出。
更新:
正如 Mohit JainBy 建议的那样,印刷商:
printf("i:%2d, result = %3d, i*16=%d\n", i, result, i*16) ;
释放模式输出正确:
i: 0, result = 0, i*16=0
i: 1, result = 16, i*16=16
(...)
i:14, result = 224, i*16=224
i:15, result = 240, i*16=240
i:16, result = 255, i*16=256