我遇到了一个似乎非常晦涩的错误。我的程序涉及长时间循环一些代码,并最终在循环中运行一些函数。奇怪的是,在我运行一个特定的函数之后,我的 for 循环变量“z”从 3200 跳到了 1059760811 附近的某个地方(它每次都会改变)。该函数自然不会使用循环变量,所以老实说我不知道这里发生了什么。
整个代码太长,这里就不贴了,所以我会尽量只贴重要的部分,先贴相关函数,再贴for循环:
void enterdata(float dpoint,int num){
autodata[num] += dpoint;
}
float autocorr(){
float autocorrelation = 0;
for(int a = 0; a<SIZEX; a++)
{
for(int b = 0; b<SIZEY; b++)
{
if(grid[a][b] == reference[a][b]){autocorrelation++;}
}
}
autocorrelation /= SIZEX*SIZEY;
autocorrelation -= 0.333333333333;
return autocorrelation;
}
for (long z = 0.0; z<MAXTIME; z++)
{
for (long k=0; k<TIMESTEP; k++)
{
grid.pairswap();
}
if (z == autostart_time)
{
grid.getreference();
signal = 1; // signal is used in the next if statement to verify that the autocorrelation has a reference.
}
if ((z*10)%dataint == 0)
{
if (signal == 1) {
//!!! this is the important segment!!!
cout << z << " before\n";
grid.enterdata(grid.autocorr(),count);
cout << z << " after\n";
cout << grid.autocorr() << " (number returned by function)\n";
count++;
}
}
if (z%(dataint*10) == 0) { dataint *= 10; }
}
从代码中标记的“重要部分”,这是我的输出:
3200 之前,1059760811 之后,0.666667(函数返回的数字)
显然,在函数期间,“z”变量发生了一些奇怪的事情。我也确信它是 enterdata 函数,而不是来自单独运行的测试的自相关函数。
我不知道如何解决这个问题,或者发生了什么。帮助?!?!?
谢谢!