我有这个结构:
typedef struct
{
char name[3];
int month_num;
int day_num;
int day_size; // amount of days that are field in with tasks.
char *task[40];
}
month; // each month contains a name, its num in the calendar and days.
我需要为它分配内存分配。我能够为结构本身分配内存:
mon = (month*)malloc(12 * sizeof(month));
但是我很难对字符 *任务[40] 做同样的事情。
我尝试了很多可能性,但没有一种奏效......
char temptask[40];
mon->task=malloc(strlen(temptask)+1);
for(i=0;i<40;i++)
{
/* Allocating memory to each pointers and later you write to this location */
mon->task[i] = malloc(size);/* If you have a initialized string then size = strlen(tempTask) + 1 */
}
您拥有的是指针数组,只需访问它们并为每个指针单独分配内存,如上所示。
char *task[40];
是一个包含 40 个指针的数组。 您可能需要一个包含 40 个字符的数组,在这种情况下,无需单独对其进行 malloc,或者单个指针,在这种情况下,您可以malloc(40)
. 不能对未初始化的 C 字符串调用strlen()
,这是未定义的行为(缓冲区溢出)。
我认为,你需要的是
char *task;
然后将内存分配为
mon[j].task=malloc(sizeof(temptask));
接下来,当您已将内存分配给mon
mon = malloc(12 * sizeof(month));
访问应作为
mon[j].task // j being the index, running from 0 to 11
否则,如果你真的有一个 char *task[40];
,这意味着,一个40
char *
数组,那么你必须为每个内存,一个接一个。
int p = strlen(temptask);
for(i=0;i<40;i++)
{
mon[j].task[i] = malloc(p+1);
}