提问人:user1234554321 提问时间:1/26/2021 最后编辑:Ediuser1234554321 更新时间:1/27/2021 访问量:117
c++ 中的“Hello world”练习引发 ArrayIndexOutOfBoundsException
"Hello world" exercise in c++ throws ArrayIndexOutOfBoundsException
问:
我的教科书显示了这段C++代码的运行,但是当我在net bean上运行它时,它显示此错误:线程“main”中的异常 ArrayIndexOutOfBoundsException:0
#include <iostream>
using namespace std;
int main(void)
{
cout << "Hello world";
return 0;
}
答:
2赞
ΦXocę 웃 Пepeúpa ツ
1/26/2021
#1
c++ 中没有 java.lang.ArrayIndexOutOfBoundsException
该错误是因为 NetBeans 正在运行另一个 Java 项目。
右键单击 C++ 项目,然后单击“关闭其他...” 然后你就可以在正确的位置上工作了。
评论
g++ -Wall -Wextra -g