如何使用友元函数来操作数据嵌套私有类ES

发布于 2024-10-15 09:12:54 字数 597 浏览 2 评论 0原文

       class Hen {
            friend class Nest ;
            class Nest {
                    int n ;
                    friend class Egg;
                    class Egg {
                         int e ;
                    } *eg;
            } *nst ;
            public :
                friend void fill (  **!** ) ;
                ... // some code to show data
       };
  1. if **!** = Nest *; 使用该函数,如何操作 Egg 中的数据?
  2. if **!** = Egg *; 使用该函数,如何操作 Nest 中的数据?

注意:我已尝试在互联网上搜索,但找不到任何答案。所以,我在那里问,如果这些问题微不足道,请原谅我!

       class Hen {
            friend class Nest ;
            class Nest {
                    int n ;
                    friend class Egg;
                    class Egg {
                         int e ;
                    } *eg;
            } *nst ;
            public :
                friend void fill (  **!** ) ;
                ... // some code to show data
       };
  1. if **!** = Nest *; using that function, How can I manipulate data in Egg?
  2. if **!** = Egg *; using that function, How can I manipulate data in Nest?

Note : I have tried and searched in internet but I could not find any answer. So, I am asking there, if these question is trivial, forgive me !

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

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

发布评论

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

评论(1

梦途 2024-10-22 09:12:54

您需要使外部类成为嵌套类的友元:

class Hen {             
    class Nest {
    friend class Hen;
        class Egg {
        friend class Nest;
        };
    };
};

You need to make the outer class a friend of the nested class:

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