繁体   English   中英

如何从C ++中的嵌套类调用变量

[英]how to call variable from a nested class in C++

所以我的代码有点像这样

class foo1
{
    public:
        foo1()
        {
            a = "text";
        }

        void getString()
        {
            return a;
        }
    private:
        string a;
};

class foo2
{
    public:
        foo2()
        {
            foo3 boo3;
        }
        class foo3
        {
            public:
                foo3()
                {
                    foo1 boo1;
                }
            private:
                foo1 boo1;
        };
    private:
};

int main()
{
    foo2 object;
    cout << /* ??? */ ;
}

首先,类中的代码结构是否存在任何问题,其次,我该在注释的什么地方显示在int main()中初始化的foo2对象中的字符串a?

代码有多个问题,我将在代码注释中进行解释

class foo1
{
    public:
        //use initializer lists to avoid extra copying
        foo1() : a("text") 
        {
        }

        //change return type from void to a const reference to string
        const string & getString()
        {
            return a;
        }
    private:
        string a;
};

class foo2
{
    public:
        //use initializer lists to avoid extra copying
        foo2() : boo3() 
        {
        }
        class foo3
        {
            public:
                //use initializer lists to avoid extra copying
                foo3() : boo1()
                {
                }

                //you need a function that will allow access to the private member. Returning a const reference avoids extra copying
                const foo1 & boo()
                {
                    return boo1;
                }

            private:
                foo1 boo1;
        };

        //you need a function that will allow access to the private member
        const foo3 & foo()
        {
            return boo3;
        }
    //you need to save the foo3 object in the class to be able to use it later
    private:
        foo3 boo3;
};

int main()
{
    foo2 object;
    cout << object.foo().boo().getString();
}

现在,这就是您访问字符串的方式:

    cout << object.foo().boo().getString();
            \__________/ \___/ \_________/
                 ^         ^        ^---- get the string from the foo1 object
                 |         |---- get the foo1 object from the foo3 object
                 |---- get the foo3 object stored in "object"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM