<tfoot id='C7XEC'></tfoot>

    <small id='C7XEC'></small><noframes id='C7XEC'>

    1. <i id='C7XEC'><tr id='C7XEC'><dt id='C7XEC'><q id='C7XEC'><span id='C7XEC'><b id='C7XEC'><form id='C7XEC'><ins id='C7XEC'></ins><ul id='C7XEC'></ul><sub id='C7XEC'></sub></form><legend id='C7XEC'></legend><bdo id='C7XEC'><pre id='C7XEC'><center id='C7XEC'></center></pre></bdo></b><th id='C7XEC'></th></span></q></dt></tr></i><div id='C7XEC'><tfoot id='C7XEC'></tfoot><dl id='C7XEC'><fieldset id='C7XEC'></fieldset></dl></div>
        <bdo id='C7XEC'></bdo><ul id='C7XEC'></ul>
      <legend id='C7XEC'><style id='C7XEC'><dir id='C7XEC'><q id='C7XEC'></q></dir></style></legend>

      使用初始化列表(C++)初始化父级的受保护成员

      时间:2023-08-02
      <i id='TEbN0'><tr id='TEbN0'><dt id='TEbN0'><q id='TEbN0'><span id='TEbN0'><b id='TEbN0'><form id='TEbN0'><ins id='TEbN0'></ins><ul id='TEbN0'></ul><sub id='TEbN0'></sub></form><legend id='TEbN0'></legend><bdo id='TEbN0'><pre id='TEbN0'><center id='TEbN0'></center></pre></bdo></b><th id='TEbN0'></th></span></q></dt></tr></i><div id='TEbN0'><tfoot id='TEbN0'></tfoot><dl id='TEbN0'><fieldset id='TEbN0'></fieldset></dl></div>
        <tbody id='TEbN0'></tbody>
    2. <tfoot id='TEbN0'></tfoot>
      1. <small id='TEbN0'></small><noframes id='TEbN0'>

              <bdo id='TEbN0'></bdo><ul id='TEbN0'></ul>
            • <legend id='TEbN0'><style id='TEbN0'><dir id='TEbN0'><q id='TEbN0'></q></dir></style></legend>

                本文介绍了使用初始化列表(C++)初始化父级的受保护成员的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                是否可以使用子类的构造函数的初始化列表来初始化在父类中声明为受保护的数据成员?我无法让它工作.我可以解决它,但如果我不必这样做就好了.

                Is it possible to use the initialization list of a child class' constructor to initialize data members declared as protected in the parent class? I can't get it to work. I can work around it, but it would be nice if I didn't have to.

                一些示例代码:

                class Parent
                {
                protected:
                    std::string something;
                };
                
                class Child : public Parent
                {
                private:
                    Child() : something("Hello, World!")
                    {
                    }
                };
                

                当我尝试这个时,编译器告诉我:类‘Child’没有任何名为‘something’的字段".这样的事情可能吗?如果是这样,语法是什么?

                When I try this, the compiler tells me: "class 'Child' does not have any field named 'something'". Is something like this possible? If so, what is the syntax?

                非常感谢!

                推荐答案

                按照你描述的方式是不可能的.您必须向基类添加一个构造函数(可以受保护)才能将其转发.类似的东西:

                It is not possible in the way you describe. You'll have to add a constructor (could be protected) to the base class to forward it along. Something like:

                class Parent
                {
                protected:
                    Parent( const std::string& something ) : something( something )
                    {}
                
                    std::string something;
                }
                
                class Child : public Parent
                {
                private:
                    Child() : Parent("Hello, World!")
                    {
                    }
                }
                

                这篇关于使用初始化列表(C++)初始化父级的受保护成员的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:在 C++ 中覆盖 Base 的重载函数 下一篇:继承:“A"是“B"的不可访问的基础

                相关文章

                最新文章

                  <bdo id='m2G6d'></bdo><ul id='m2G6d'></ul>
              1. <tfoot id='m2G6d'></tfoot>
              2. <small id='m2G6d'></small><noframes id='m2G6d'>

                    <legend id='m2G6d'><style id='m2G6d'><dir id='m2G6d'><q id='m2G6d'></q></dir></style></legend>
                    <i id='m2G6d'><tr id='m2G6d'><dt id='m2G6d'><q id='m2G6d'><span id='m2G6d'><b id='m2G6d'><form id='m2G6d'><ins id='m2G6d'></ins><ul id='m2G6d'></ul><sub id='m2G6d'></sub></form><legend id='m2G6d'></legend><bdo id='m2G6d'><pre id='m2G6d'><center id='m2G6d'></center></pre></bdo></b><th id='m2G6d'></th></span></q></dt></tr></i><div id='m2G6d'><tfoot id='m2G6d'></tfoot><dl id='m2G6d'><fieldset id='m2G6d'></fieldset></dl></div>