C++:结构/类中的构造函数与初始化列表

发布于 2024-08-18 09:15:43 字数 238 浏览 8 评论 0原文

结构/类的对象(没有构造函数)可以使用初始化列表创建。为什么在具有构造函数的结构/类上不允许这样做?

struct r { int a; };
struct s { int a; s() : a(0) {} };
r = { 1 }; // works
s = { 1 }; // does not work

An object of a struct/class (that has no constructor) can be created using an initializer list. Why is this not allowed on struct/class with constructor?

struct r { int a; };
struct s { int a; s() : a(0) {} };
r = { 1 }; // works
s = { 1 }; // does not work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

巡山小妖精 2024-08-25 09:15:43

不,具有构造函数的对象不再被视为 POD(普通旧数据)。对象只能包含其他 POD 类型作为非静态成员(包括基本类型)。 POD 可以具有静态函数和静态复杂数据成员。

请注意,即将推出的 C++ 标准将允许您定义初始化列表,这将允许使用大括号初始化非 POD 对象。

No, an object with a constructor is no longer considered a POD (plain old data). Objects must only contain other POD types as non-static members (including basic types). A POD can have static functions and static complex data members.

Note that the upcoming C++ standard will allow you to define initializer lists, which will allow non-POD objects to be initialized with braces.

时光清浅 2024-08-25 09:15:43

如果您的问题是想问“我可以这样做吗:”

struct MyGizmo
{
  char things_[5];
  MyGizmo() : things_({'a', 'b', 'c', 'd', 'e'}) ();
};

……那么答案是否定的。 C++ 不允许这样做。

If by your question you mean to ask, "Can I do this:"

struct MyGizmo
{
  char things_[5];
  MyGizmo() : things_({'a', 'b', 'c', 'd', 'e'}) ();
};

...then the answer is no. C++ doesn't allow this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文