自己单步调试的时候发现程序会跳过几行代码,比如
for(i = 0; i < PrimeSetSize; i++)
{
PrimeSetsum += PrimeSet[i];
}
而且看到的执行顺序与自己实际要求的不一。
有没有人遇到过这种问题呢?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
自己单步调试的时候发现程序会跳过几行代码,比如
for(i = 0; i < PrimeSetSize; i++)
{
PrimeSetsum += PrimeSet[i];
}
而且看到的执行顺序与自己实际要求的不一。
有没有人遇到过这种问题呢?