<tfoot id='wjsDA'></tfoot>

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

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

      • <bdo id='wjsDA'></bdo><ul id='wjsDA'></ul>

        为什么我的 HelloWorld 函数没有在这个范围内声明?

        时间:2023-10-17
        <i id='6lPpM'><tr id='6lPpM'><dt id='6lPpM'><q id='6lPpM'><span id='6lPpM'><b id='6lPpM'><form id='6lPpM'><ins id='6lPpM'></ins><ul id='6lPpM'></ul><sub id='6lPpM'></sub></form><legend id='6lPpM'></legend><bdo id='6lPpM'><pre id='6lPpM'><center id='6lPpM'></center></pre></bdo></b><th id='6lPpM'></th></span></q></dt></tr></i><div id='6lPpM'><tfoot id='6lPpM'></tfoot><dl id='6lPpM'><fieldset id='6lPpM'></fieldset></dl></div>

          <bdo id='6lPpM'></bdo><ul id='6lPpM'></ul>

            <small id='6lPpM'></small><noframes id='6lPpM'>

              <tbody id='6lPpM'></tbody>
            <legend id='6lPpM'><style id='6lPpM'><dir id='6lPpM'><q id='6lPpM'></q></dir></style></legend>

                1. <tfoot id='6lPpM'></tfoot>
                  本文介绍了为什么我的 HelloWorld 函数没有在这个范围内声明?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  #include <iostream>
                  
                  using namespace std;
                  
                  int main()
                  {
                      HelloWorld();
                      return 0;
                  }
                  
                  void HelloWorld()
                  {
                      cout << "Hello, World" << endl;
                  }
                  

                  我在使用 g++ 时遇到以下编译错误:

                  I am getting the following compilation error with g++:

                  l1.cpp: In function 'int main()':
                  l1.cpp:5:15: error: 'HelloWorld' was not declared in this scope
                  

                  推荐答案

                  您需要先声明或定义函数,然后才能使用它.否则,它不知道 HelloWorld() 作为函数存在.

                  You need to either declare or define the function before you can use it. Otherwise, it doesn't know that HelloWorld() exists as a function.

                  在你的主函数之前添加:

                  Add this before your main function:

                  void HelloWorld();
                  

                  或者,您可以在 main() 之前移动 HelloWorld() 的定义:

                  Alternatively, you can move the definition of HelloWorld() before your main():

                  #include <iostream>
                  using namespace std;
                  
                  void HelloWorld()
                  {
                    cout << "Hello, World" << endl;
                  }
                  
                  int main()
                  {
                    HelloWorld();
                    return 0;
                  }
                  

                  这篇关于为什么我的 HelloWorld 函数没有在这个范围内声明?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:有没有办法在 C++ 中访问外部作用域中的局部变量? 下一篇:为什么未命名的 C++ 对象会在作用域块结束之前销毁?

                  相关文章

                      <legend id='GzIDA'><style id='GzIDA'><dir id='GzIDA'><q id='GzIDA'></q></dir></style></legend>
                    1. <small id='GzIDA'></small><noframes id='GzIDA'>

                      <tfoot id='GzIDA'></tfoot>

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