gpt4 book ai didi

c - 结构内存分配错误

转载 作者:行者123 更新时间:2023-11-30 20:28:13 24 4
gpt4 key购买 nike

我正在编写一个带有指针和结构的 C 项目,现在面临这个问题:有一个结构

struct Customer
{
char Name[80];
char Address[40];
int ID;
int Pnumber;
};

我将创建一个包含 *line_count* 个成员的该结构的动态数组。我使用这段代码,但它使程序崩溃:

struct Customer* ph;
ph = (struct Customer*)malloc(line_count * sizeof(struct Customer));

我做错了什么?

最佳答案

好:

struct Customer* ph;
ph = (struct Customer*)malloc(line_count * sizeof(struct Customer));

更好:

struct Customer* ph =
(struct Customer*)malloc(line_count * sizeof(struct Customer));
if (!ph) {
<<error handling>>
...

但坦率地说,听起来问题出在代码的其他地方。

您的 malloc() 没有任何根本问题。

也许“line_count”是假的,也许“malloc()”失败(在这种情况下,它应该返回“NULL”)...或者您可能错误地访问了结构和/或无法正确初始化它.

实际崩溃的堆栈回溯将非常有用。

关于c - 结构内存分配错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10806341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com