本文介绍了“字符串无法解析"C++ Eclipse 中的错误(Eclipse 无法解析标准库)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 Eclipse 中有以下 C++ 代码,它在 string
和 cout
下划线并说无法解析.
I have the following code in eclipse for c++ and it's underlining string
and cout
and saying could not be resolved.
#include <string>
#include <iostream>
using namespace std;
int main()
{
string s;
s = "hello world";
cout << s;
return 0;
}
有人知道为什么吗?
截图
我找到了一个解决方案,谢谢大家(见答案).
I have found a solution thanks everyone (see answers).
推荐答案
问题是我需要同时拥有 minGW 和 MSYS 已安装并添加到 PATH.
The problem was that I needed to have both minGW and MSYS installed and added to PATH.
问题现已解决.
这篇关于“字符串无法解析"C++ Eclipse 中的错误(Eclipse 无法解析标准库)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!