1. ホーム
  2. c++

[解決済み] error: aggregate object に "{...}" が含まれる初期化が必要 - c++.

2022-02-03 15:10:47

質問

struct test
{
    unsigned int test1;
    unsigned char test2[4096];
    unsigned int test3;
} foo

struct foobar
{
unsigned char data[4096];
}

構造体にアクセスする場合、foo.test1, foo.test2[4096], などと言います。 しかし、foo.test2 にあるデータを以下のように返したい場合。

pac.datafoo = foo.test2[4096];

unsigned char data[4096] =  pac.datafoo;

というエラーが表示されます。

error: initialization with "{...}" expected for aggregate object

私がしている間違いは何なのでしょうか?

どうすればいいですか?

配列の初期化方法を学ぶ必要があります。単純に1つの変数として代入するのではありません。

いくつか例を挙げます。

int arrayone[3] = {0}; // assign all items with 0

int arraytwo[3] = {1, 2, 3 }; // assign each item with 1, 2 and 3

int arraythree[3]; // assign arraythree with arraytwo
for (int i = 0; i < 3; ++i) {
    arraythree[i] = arraytwo[i];
}