如何解决如何释放char 3D数组?
这样的字符串数组如何释放内存?
char** test[5];
for(int i=0;i< 5;i++)
test[i] = malloc(sizeof(char*) * 4);
for(int i=0;i< 4;i++){
test[0][i] = malloc(sizeof(char) * 50);
test[1][i] = malloc(sizeof(char) * 50);
test[2][i] = malloc(sizeof(char) * 50);
test[3][i] = malloc(sizeof(char) * 50);
test[4][i] = malloc(sizeof(char) * 50);
}
因为我做了类似的事情,我有内存泄漏
for (int i = 0; i <4; i++)
{
free(test[0][i]);
free(test[1][i]);
free(test[2][i]);
free(test[3][i]);
free(test[4][i]);
}
for (int i = 0; i < 5; i++)
free(test[i]);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。