这是一个 C 编程问题。
我需要在函数外部传输一个二维指针,f()
以便其他函数可以访问内部分配的内存f()
。
但是,当 i > 1 时,我在“此处出错”处出现分段错误。
如何做二维指针,以便输入参数可以真正被外部函数使用?我怀疑这*ba = (dp[0]);
有什么问题。
为什么 ?
typedef struct {
char* al; /* '\0'-terminated C string */
int sid;
} strtyp ;
strtyp *Getali(void)
{
strtyp *p = (strtyp *) malloc(sizeof(strtyp )) ;
p->al = "test al";
p->sid = rand();
return p;
}
strtyp *GetNAl(void)
{
strtyp *p = (strtyp *) malloc(sizeof(strtyp )) ;
p->al = "test a";
p->sid = rand();
return p;
}
int *getIDs2(strtyp **ba, int *aS , int *iSz)
{
int *id = (int *) malloc(sizeof(int) * 8) ;
*idS = 8 ;
int length = 10;
int i ;
strtyp **dp = (strtyp **) malloc(sizeof(strtyp*)*length) ;
for(i = 0 ; i < length ; ++i)
{
dp[i] = GetNAl();
printf("(*pd)->ali is %s ", (*pd[i]).ali );
printf("(*pd)->sid is %d ", (*pd[i]).sid );
printf("\n");
}
*ba = (dp[0]);
for(i = 0 ; i < length ; ++i)
{
printf("(*ba)->ali is %s ", (*ba[i]).ali ); // error here
printf("(*ba)->sid is %d ", (*ba[i]).sid );
printf("\n");
}
*aIs = length ;
return id;
}