如何初始化类构造函数列表中的结构?

发布于 2024-12-06 23:02:39 字数 327 浏览 0 评论 0原文

我想在默认类初始值设定项列表中初始化一个结构。例如,如果我有一个像这样的类:

class Foo
{
private:
    int x;
    int y;
    int z;
    somestruct p;
public:
    Foo(): x(1), y(2), z(3)
    {
        // other stuff
    }
};

那么,我可以通过这种方式清楚地初始化原始类型 - 如何初始化一个结构,例如 somestruct p 参数?如果这样初始化的话,p的设计有什么限制吗?

I want to initialize a struct within a default class initializer list. For example, if I have a class like like this:

class Foo
{
private:
    int x;
    int y;
    int z;
    somestruct p;
public:
    Foo(): x(1), y(2), z(3)
    {
        // other stuff
    }
};

So, I can clearly initialize primitive types this way - how do I initialize a struct, for example the somestruct p parameter? Are there any limitations on the design of p if initialized this way?

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

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

发布评论

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

评论(1

我做我的改变 2024-12-13 23:02:39

在下面的代码中,m_strctMyClass 的成员,并由默认构造函数初始化。

struct MyStruct
{
    MyStruct(int i): // Constructor
        myData(i)
    { }

    int myData;
};

class MyClass
{
public:
    MyClass() :  // default constructor
        m_strct(0)
    { }

private:    
    MyStruct m_strct;
};

In the code below, m_strct is a member of MyClass, and is initialized by the default constructor.

struct MyStruct
{
    MyStruct(int i): // Constructor
        myData(i)
    { }

    int myData;
};

class MyClass
{
public:
    MyClass() :  // default constructor
        m_strct(0)
    { }

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