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

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

      1. <tfoot id='oeRE4'></tfoot>
          <bdo id='oeRE4'></bdo><ul id='oeRE4'></ul>

        其中&符号“&amp;"通过引用传递参数时可以放置吗?

        Where ampersand quot;amp;quot; can be put when passing argument by reference?(其中符号“amp;通过引用传递参数时可以放置吗?)

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

              <bdo id='WmimT'></bdo><ul id='WmimT'></ul>

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

                <tbody id='WmimT'></tbody>
                • <tfoot id='WmimT'></tfoot>
                • 本文介绍了其中&符号“&amp;"通过引用传递参数时可以放置吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在我看到的例子中,参数是通过以下方式通过引用传递的:

                  In the examples that I saw the arguments were passed by reference in the following way:

                  void AddOne(int &y)
                  

                  在我拥有的代码中,我看到以下语法:

                  In the code that I have I see the following syntax:

                  void AddOne(int& y)
                  

                  我想知道它是否相同,或者第二种情况与第一种情况有什么不同.

                  I wonder if it is the same or the second case is somehow different from the first one.

                  推荐答案

                  两者完全相同.完全没有区别.

                  Both are exactly the same. No difference at all.

                  重要的是& 应该在type变量 名称之间.空格无所谓.

                  All that matters is that & should be between the type and the variable name. Spaces don't matter.

                  所以

                  void AddOne(int&  y);
                  void AddOne(int  &y);
                  void AddOne(int & y)
                  void AddOne(int   &     y);
                  void AddOne(int&y);
                  

                  都一样!

                  这篇关于其中&符号“&amp;"通过引用传递参数时可以放置吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  C++ stl unordered_map implementation, reference validity(C++ stl unordered_map 实现,参考有效性)
                  C++: Is it possible to use a reference as the value in a map?(C++:是否可以使用引用作为映射中的值?)
                  Why can a non-const reference parameter be bound to a temporary object?(为什么可以将非常量引用参数绑定到临时对象?)
                  What is a dangling reference?(什么是悬空引用?)
                  C++ reference changes when push_back new element to std::vector(当 push_back 新元素到 std::vector 时,C++ 引用发生变化)
                  Why does std::forward have two overloads?(为什么 std::forward 有两个重载?)
                      <tbody id='yrujN'></tbody>

                  • <small id='yrujN'></small><noframes id='yrujN'>

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

                      <bdo id='yrujN'></bdo><ul id='yrujN'></ul>

                          <legend id='yrujN'><style id='yrujN'><dir id='yrujN'><q id='yrujN'></q></dir></style></legend>