简体   繁体   English

尝试设置要在C中初始化的struct的内部数组

[英]Trying to set a struct's inside array to be initialized in C

I have this struct definition: 我有这个结构定义:

typedef struct intArray
{
    int myArray[1000];
} intArray;

My goal is to create an intArray of zeros, i tried this: 我的目标是创建一个零的intArray,我试过这个:

intArray example;
int createArray[1000] = {0};
example.myArray = createArray;

This results in this error message: 这会导致此错误消息:

error: assignment to expression with array type

I want the struct to automatically initialize the array to 0's but i understand it is not possible because it is only a type definition and not a variable. 我希望struct自动将数组初始化为0,但我知道这是不可能的,因为它只是一个类型定义而不是变量。 So i created one and created the array, just tried to assign it and this is the result. 所以我创建了一个并创建了数组,只是尝试分配它,这就是结果。 Any advice is appreciated. 任何建议表示赞赏。

Declaring arrays like int myArray[1000]; 声明像int myArray[1000];这样的数组int myArray[1000]; won't let you change the value of the array pointer. 不会让你改变数组指针的值。 Declare your struct like 声明你的结构

typedef struct intArray
{
    int *myArray;
} intArray;

if you can. 如果你可以的话。

Why not use memset to zero the array? 为什么不使用memset将数组归零? Also, as suggested by another user, it'd be better to allocate this memory to a pointer....especially if you intend to pass that struct around between functions. 另外,正如另一个用户所建议的那样,最好将这个内存分配给指针....特别是如果你打算在函数之间传递这个结构。

Just a thought, but this would work: 只是一个想法,但这将工作:

typedef struct intArray {
    int *myArray;
} intArray;

int main(void)
{
    intArray a;
    int b;

    // malloc() and zero the array
    //         
    // Heh...yeah, always check return value -- thanks,
    // Bob__ - much obliged, sir.
    //              
    if ((a.myArray = calloc(1000, sizeof *a.myArray)) == NULL) {
        perror("malloc()");
        exit(EXIT_FAILURE);
    }

    memset(a.myArray, 0, (1000 * sizeof(int)));

    // Fill the array with some values
    //
    for (b = 0; b < 1000; b++)
        a.myArray[b] = b;

    // Just to make sure all is well...yep, this works.
    //
    for (b = 999; b >= 0; b--)
        fprintf(stdout, "myArray[%i] = %i\n", b, a.myArray[b]);

    free(a.myArray);

}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM