error: initialization with quot;{...}quot; expected for aggregate object - c++(错误:用“{...}初始化;预期聚合对象 - C++)
问题描述
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 中存在的数据时
if i want to access the struct, i say foo.test1, foo.test2[4096], etc.. however, when I wish to return the data present in foo.test2 in the following manner
pac.datafoo = foo.test2[4096];
unsigned char data[4096] = pac.datafoo;
这是我得到的错误:
error: initialization with "{...}" expected for aggregate object
我做错了什么?
推荐答案
需要学习数组的初始化方法.它不是简单地分配为单个变量.
You need to learn the array initialization method. It's NOT simply assigned as the single variable.
一些例子:
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];
}
这篇关于错误:用“{...}"初始化;预期聚合对象 - C++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误:用“{...}"初始化;预期聚合对象 - C++
基础教程推荐
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- c++ STL设置差异 2022-01-01
