我在Eclipse中使用C++时遇到了"无需构建错误".我甚至无法在名为"hw"的项目中运行一个简单的"hello world"程序来运行:
#include <iostream>
using namespace std;
int main()
{
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
return 0;
}
Run Code Online (Sandbox Code Playgroud)
什么是"无需构建"错误?这是什么意思?它为什么会发生?我如何解决它?我已经检查了我在这里和其他地方找到的几条线索,但到目前为止还没有找到任何帮助.