c++ 中的“Hello world”练习引发 ArrayIndexOutOfBoundsException

"Hello world" exercise in c++ throws ArrayIndexOutOfBoundsException

提问人:user1234554321 提问时间:1/26/2021 最后编辑:Ediuser1234554321 更新时间:1/27/2021 访问量:117

问:

我的教科书显示了这段C++代码的运行,但是当我在net bean上运行它时,它显示此错误:线程“main”中的异常 ArrayIndexOutOfBoundsException:0

#include <iostream>

using namespace std;

int main(void)
{ 
  cout << "Hello world";
  return 0; 
}
C++ 数组 ArrayIndexOutOfboundsException

评论

0赞 Basile Starynkevitch 1/26/2021
阅读此 C++ 参考,您的 C++ 编译器的文档,也许 GCC 可以作为 .然后阅读调试器的文档,也许是 GDB。您可能有兴趣在您的计算机上安装 DebianGNU emacsg++ -Wall -Wextra -g

答:

2赞 ΦXocę 웃 Пepeúpa ツ 1/26/2021 #1

c++ 中没有 java.lang.ArrayIndexOutOfBoundsException

该错误是因为 NetBeans 正在运行另一个 Java 项目。

右键单击 C++ 项目,然后单击“关闭其他...” 然后你就可以在正确的位置上工作了。