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

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

  • <legend id='vUmmg'><style id='vUmmg'><dir id='vUmmg'><q id='vUmmg'></q></dir></style></legend>

      1. 为什么函数不能在 Main 之后

        时间:2023-05-23
            <tbody id='aOcmO'></tbody>
          <tfoot id='aOcmO'></tfoot>

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

                • <bdo id='aOcmO'></bdo><ul id='aOcmO'></ul>
                  <legend id='aOcmO'><style id='aOcmO'><dir id='aOcmO'><q id='aOcmO'></q></dir></style></legend>
                  <i id='aOcmO'><tr id='aOcmO'><dt id='aOcmO'><q id='aOcmO'><span id='aOcmO'><b id='aOcmO'><form id='aOcmO'><ins id='aOcmO'></ins><ul id='aOcmO'></ul><sub id='aOcmO'></sub></form><legend id='aOcmO'></legend><bdo id='aOcmO'><pre id='aOcmO'><center id='aOcmO'></center></pre></bdo></b><th id='aOcmO'></th></span></q></dt></tr></i><div id='aOcmO'><tfoot id='aOcmO'></tfoot><dl id='aOcmO'><fieldset id='aOcmO'></fieldset></dl></div>
                  本文介绍了为什么函数不能在 Main 之后的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  为什么我不能在main之后放一个函数,visual studio无法构建程序.这是 C++ 的怪癖还是 Visual Studio 的怪癖?

                  Why can't I put a function after main, visual studio cannot build the program. Is this a C++ quirk or a Visual Studio quirk?

                  例如

                  int main()
                  {
                     myFunction()
                  }
                  
                  myFunction(){}
                  

                  会产生 main 不能使用 myFunction 的错误

                  will produce an error that main cannot use myFunction

                  推荐答案

                  可以,但必须事先声明:

                  You can, but you have to declare it beforehand:

                  void myFunction(); // declaration
                  
                  int main()
                  {
                     myFunction();
                  }
                  
                  void myFunction(){} // definition
                  

                  请注意,函数需要返回类型.如果函数不返回任何内容,则该类型必须为 void.

                  Note that a function needs a return type. If the function does not return anything, that type must be void.

                  这篇关于为什么函数不能在 Main 之后的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:从 Intellisense 中隐藏 C++ 代码块 下一篇:在 C++ 中以编程方式将资源加载为字节数组

                  相关文章

                  最新文章

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

                  1. <small id='B7Pil'></small><noframes id='B7Pil'>

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