gpt4 book ai didi

c++ - 如何制作嵌套聚合初始化器?

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

<分区>

我有如下代码

struct A {int i; int j;}

int main()
{
array<A, 2> a;
a = {{1,2},{3,4}}; //compilation error: not take a right-hand operand of
//type 'initializer list' (or no acceptable conversion)
}

我认为这是一个嵌套聚合初始化,但为什么不起作用?以及如何通过更改代码使 a = {{1,2},{3,4}} 工作?

找工作

a = { {{1,2},{3,4}} }; 

不知道为什么?

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