gpt4 book ai didi

C++ 和 C 非成员多结构初始化

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

如何用相同的数据初始化两个或多个结构体?这必须在编译时完成,作为非成员全局变量的 const 结构的默认数据。

编辑:那么 C 呢?

最佳答案

对我有用:

// header
struct Foo {
int a;
int b;
};
extern Foo const x;
extern Foo const y;

// cpp file
Foo const x{2, 3};
Foo const y = x;

编辑:稍微重新解释了这个问题。

关于C++ 和 C 非成员多结构初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35864041/

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