1

我有一个整数:(xcode用于 iPhone)。

int wordCounter=1;

后来,当我用它填充数组时——作为一个指针,在一个 for 循环中,它变成某个数字后不知何故变成了 0。我已经多次检查我的程序是否存在错误,并且我意识到我什至在任何地方都没有减少它。我有 wordCounter++

现在我已经看到我有很多这样的行,在它们之后它变成 0 :

if(tempBinary[countWords-1][j] != tempBinary[countWords][j])

所以我在想,countWords-1一次又一次地减少它,这可能吗?在我的整个程序中,我没有对此变量进行任何其他减量或初始化。我可以看到,当tempBinary定义为大小 7 时,它初始化为 5,如果tempBinary是 5,它在 3 处归零 .. 数组是否有可能溢出并归零?我不这么认为。。

这里有什么问题?谢谢 。

编辑(有问题的状态之一)

int countWords=1;  
 int stabilityK=0;

tempBinary[0][0]= tempBinary[0][1]=tempBinary[0][2]=tempBinary[0][3]=tempBinary[0][4]=tempBinary[0][5]=tempBinary[0][6]=tempBinary[0][7]=1 ;

for(int k=0;k<numOfBuffers;k++)
{
    NSLog(@"countwords:%d",countWords-1);
    float *temp=getFFT(buffersRing[k],buffersRing[k][0]);
    for(int j=0;j<wordSize;j++)
    {

        switch(state_on_signal)
        {

            case WAIT_FOR_SECOND_CHANGE:
                //get new word
                if(temp[goodBins[j]] > decisionLine[j])
                    tempBinary[countWords][j]=1;
                else
                    tempBinary[countWords][j]=0;

                if(tempBinary[countWords-1][j] != tempBinary[countWords][j])
                    newData=1;
                  NSLog(@"s1: countwords:%d",countWords-1);
                if(j==wordSize-1)
                {
                    NSLog(@"s2: countwords:%d",countWords-1);
                    NSLog(@"PRE TEMP:%d%d%d%d%d%d%d%d",tempBinary[countWords-1][0],tempBinary[countWords-1][1],tempBinary[countWords-1][2],tempBinary[countWords-1][3],tempBinary[countWords-1][4],tempBinary[countWords-1][5],tempBinary[countWords-1][6],tempBinary[countWords-1][7] );
                    NSLog(@"NEW TEMP-WAIT FOR SECOND CHANGE :%d%d%d%d%d%d%d%d",tempBinary[countWords][0],tempBinary[countWords][1],tempBinary[countWords][2],tempBinary[countWords][3],tempBinary[countWords][4],tempBinary[countWords][5],tempBinary[countWords][6],tempBinary[countWords][7] );

                    NSLog(@"s3: countwords:%d",countWords-1);
                    //TAKE NEW DATA
                    if(newData==1)
                    {
                             NSLog(@" TOOK new BINARY at current k:%d, so took data at: %d",k,(k+markedK)/2);

                        for(int s=0;s<wordSize;s++)
                        {
                            if( getFFT(buffersRing[(k+markedK)/2],buffersRing[(k+markedK)/2][0])[goodBins[s]  ]  >decisionLine[s] )
                              binary[countWords-1][s]=  1;
                               else
                                binary[countWords-1][s]=  0;

                        }
                        NSLog(@"s4: countwords:%d",countWords-1);
                        NSLog(@"BINARY%d: %d%d%d%d%d%d%d%d :%d",(countWords-1), binary[(countWords-1)][0], binary[(countWords-1)][1], binary[(countWords-1)][2], binary[(countWords-1)][3], binary[(countWords-1)][4], binary[(countWords-1)][5], binary[(countWords-1)][6], binary[(countWords-1)][7],[self getDecimal:binary[countWords-1]]);


                            countWords++;
                            markedK=k;
                            state_on_signal=WAIT_FOR_STABILITY;

                    }
                    newData=0;


                }
                break;
4

1 回答 1

1

所以我在想 countWords-1 一次又一次地递减它,这可能吗?

通常,当您误用指针并将值写入内存中的错误地址时,就会发生这种情况。

例如:在哪里以及如何声明tempBinary

由于(至少对我而言)不可能仅查看您的代码就看到问题,我建议您使用调试器逐步检查您的代码并查看countWords 何时更改。这就是问题所在(至少其中一个)。

于 2013-01-31T23:22:04.180 回答