当前位置:首页 » 《随便一记》 » 正文

c++编译报错:xxx was not declared in this scope

0 人参与  2024年03月12日 14:41  分类 : 《随便一记》  评论

点击全文阅读


根本原因:变量、函数、或者类未声明或者定义。
实际原因:被调用的代码,写在调用处的下面了,比如:

void funcA(){funcB();// do something}void funcB(){// do something}

这就会报错:funcB was not declared in this scope.

挪一下位置就好了:

void funcB(){// do something}void funcA(){funcB();// do something}

编译通过。


点击全文阅读


本文链接:http://zhangshiyu.com/post/78310.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1