<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 函数没有在这个范围内声明?

        Why is my HelloWorld function not declared in this scope?(为什么我的 HelloWorld 函数没有在这个范围内声明?)
        <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 函数没有在这个范围内声明?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Is Type(::x); valid?(是类型(::x);有效的?)
                  Difference between an inline function and static inline function(内联函数和静态内联函数的区别)
                  Compilation fails randomly: quot;cannot open program databasequot;(编译随机失败:“无法打开程序数据库)
                  Too many initializers error for a simple array in bcc32(bcc32 中的简单数组的初始值设定项过多错误)
                  No Member named stoi in namespace std(命名空间 std 中没有名为 stoi 的成员)
                  Error using a constexpr as a template parameter within the same class(在同一个类中使用 constexpr 作为模板参数时出错)

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

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

                            <bdo id='GzIDA'></bdo><ul id='GzIDA'></ul>
                          • <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>
                              <tbody id='GzIDA'></tbody>