• <legend id='4ygyh'><style id='4ygyh'><dir id='4ygyh'><q id='4ygyh'></q></dir></style></legend>

    1. <i id='4ygyh'><tr id='4ygyh'><dt id='4ygyh'><q id='4ygyh'><span id='4ygyh'><b id='4ygyh'><form id='4ygyh'><ins id='4ygyh'></ins><ul id='4ygyh'></ul><sub id='4ygyh'></sub></form><legend id='4ygyh'></legend><bdo id='4ygyh'><pre id='4ygyh'><center id='4ygyh'></center></pre></bdo></b><th id='4ygyh'></th></span></q></dt></tr></i><div id='4ygyh'><tfoot id='4ygyh'></tfoot><dl id='4ygyh'><fieldset id='4ygyh'></fieldset></dl></div>
    2. <small id='4ygyh'></small><noframes id='4ygyh'>

      • <bdo id='4ygyh'></bdo><ul id='4ygyh'></ul>
    3. <tfoot id='4ygyh'></tfoot>

        是否可以通过引用以基类为参数的函数来传递派生类

        Is it possible to pass derived classes by reference to a function taking base class as a parameter(是否可以通过引用以基类为参数的函数来传递派生类)

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

                  <tbody id='FGckE'></tbody>
              1. <small id='FGckE'></small><noframes id='FGckE'>

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

                  本文介绍了是否可以通过引用以基类为参数的函数来传递派生类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  假设我们有一个带有纯虚方法(一个接口)的抽象基类 IBase.

                  Say we have an abstract base class IBase with pure virtual methods (an interface).

                  然后我们从基类派生CFooCFoo2.

                  Then we derive CFoo, CFoo2 from the base class.

                  我们有一个知道如何使用 IBase 的函数.

                  And we have a function that knows how to work with IBase.

                  Foo(IBase *input);
                  

                  在这些情况下通常的场景是这样的:

                  The usual scenario in these cases is like this:

                  IBase *ptr = static_cast<IBase*>(new CFoo("abc"));
                  Foo(ptr);
                  delete ptr;
                  

                  但是最好避免指针管理,那么在这种情况下有没有办法使用引用?

                  But pointer management is better to be avoided, so is there a way to use references in such scenario?

                  CFoo inst("abc");
                  Foo(inst);
                  

                  其中 Foo 是:

                  Foo(IBase &input);
                  

                  推荐答案

                  是的.您不必向上转换您的对象.必要时,所有对派生类型的引用/指针都会隐式转换为基对象引用/指针.

                  Yes. You don't have to upcast your objects. All references/pointers to derived types are converted implicitly to base objects references/pointers when necessary.

                  所以:

                  IBase* ptr = new CFoo("abc"); // good
                  CFoo* ptr2 = static_cast<CFoo*>(ptr); // good
                  CFoo* ptr3 = ptr; // compile error
                  
                  CFoo instance("abc");
                  IBase& ref = instance; // good
                  CFoo& ref2 = static_cast<CFoo&>(ref); // good
                  CFoo& ref3 = ref; // compile error
                  

                  当您不得不向下转型时,如果您的类型是多态的,您可能需要考虑使用 dynamic_cast.

                  When you have to downcast you may want to consider using dynamic_cast, if your types are polymorphic.

                  这篇关于是否可以通过引用以基类为参数的函数来传递派生类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Constructor initialization Vs assignment(构造函数初始化 Vs 赋值)
                  Is a `=default` move constructor equivalent to a member-wise move constructor?(`=default` 移动构造函数是否等同于成员移动构造函数?)
                  Has the new C++11 member initialization feature at declaration made initialization lists obsolete?(声明时新的 C++11 成员初始化功能是否使初始化列表过时了?)
                  Order of constructor call in virtual inheritance(虚继承中构造函数调用的顺序)
                  How to use sfinae for selecting constructors?(如何使用 sfinae 选择构造函数?)
                  Initializing a union with a non-trivial constructor(使用非平凡的构造函数初始化联合)

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

                            <small id='5Q1EA'></small><noframes id='5Q1EA'>