4

在我的代码中,我分配了一些需要释放的二维数组。然而,每次我认为我已经掌握了指针的概念时,它们总是让我感到惊讶,因为它们没有按照我的期望去做;)

那么谁能告诉我如何处理这种情况?:

这就是我为指针分配内存的方式:

typedef struct HRTF_ {
  kiss_fft_cpx freqDataL[NFREQ]
  kiss_fft_cpx freqDataR[NFREQ]
  int nrSamples;
  char* fname;
} HRTF;

HRTF **_pHRTFs = NUL;
int _nHRTFs = 512;

_pHRTFs = (HRTF**) malloc( sizeof(HRTF*) *_nHRTFs );

int i = _nHRTFs;
while( i > 0 )
  _pHRTFs[--i] = (HRTF*) malloc( sizeof( HRTF ) );

// Load data into HRTF struct

这就是我认为我应该释放已用内存的方式:

if( _pHRTFs != NULL )
{
  __DEBUG( "Free mem used for HRTFs" );
  for( i = 0; i < _nHRTFs; ++i )
  {
    if( _pHRTFs[i] != NULL )
    {
      char buf[64];
      sprintf( buf, "Freeing mem for HRTF #%d", i );
      __DEBUG( buf );
      free( _pHRTFs[i] );
    }
  }
  __DEBUG( "Free array containing HRTFs" );
  free( _pHRTFs );
}

释放个人_pHRTFs[i]的作品,__DEBUG打印最后一条语句,但最后一条free( _pHRTFs )给我一个分段错误。为什么?

没关系- 在最后一个之后添加调试语句free( _pHRTFs )表明此代码实际上正在工作,而我的问题出在其他地方.. 感谢您的时间!

乔纳斯

4

2 回答 2

2

代码没问题。我试过运行它,它工作正常。下面是我测试的代码(我用 int 替换了未知的数据类型)和我得到的输出表明这里没有错。您得到的错误是因为其他原因。

#include <stdio.h>
#include <stdlib.h>

typedef struct HRTF_ {
      int freqDataL[10];
      int freqDataR[10];
      int nrSamples;
      char* fname;
} HRTF;

HRTF **_pHRTFs = NULL;
int _nHRTFs = 512;

int main(){
    printf("allocatingi\n");
    _pHRTFs = (HRTF**) malloc( sizeof(HRTF*) *_nHRTFs );

    int i = _nHRTFs;
    while( i > 0 )
          _pHRTFs[--i] = (HRTF*) malloc( sizeof( HRTF ) );

    printf("Allocation complete. Now deallocating\n");
    for( i = 0; i < _nHRTFs; ++i )
    {
        if( _pHRTFs[i] != NULL )
        {
            char buf[64];
            sprintf( buf, "Freeing mem for HRTF #%d", i );
            //__DEBUG( buf );
            free( _pHRTFs[i] );
        }
    }
    printf("complete without error\n");
    return 0;
}

并输出:

adnan@adnan-ubuntu-vm:desktop$ ./a.out 
allocatingi
Allocation complete. Now deallocating
complete without error
于 2012-05-09T10:06:07.500 回答
1

内存分配和取消分配似乎很好。我也在将类型更改为 int 后编译了上面的代码,我得到了以下输出。问题出在其他地方。

Freeing mem for HRTF #0
Freeing mem for HRTF #1
......
Freeing mem for HRTF #509
Freeing mem for HRTF #510
Freeing mem for HRTF #511
于 2012-05-09T10:17:35.780 回答