由于某些原因,eclipse无法识别此代码中编写的任何库。
#include<iostream>// all includes say unresolved inclusion <whatever included library>
#include<fstream>
#include<vector>
#include<map>
#include<utility>
#include<string>
using namespace std;
int main()
{
string line;//Type string could not be resolved
cout<<"Reading text file..."<<endl;
ifstream input;
input.open("textplode.txt");
while (getline(input, line))
{
}
map<char,vector<char>> map;
map['A'].push_back('B');
return 0;
}
我对eclipse有点新意,对如何解决这个问题没有任何想法。
以下是eclipse列出的一些错误
描述资源路径位置类型 函数'getline'无法解析maintenance.cpp / maintenance line 18 Semantic Error
描述资源路径位置类型 方法'open'无法解决maintenance.cpp / maintenance line 16 Semantic Error
描述资源路径位置类型 方法'push_back'无法解析maintenance.cpp / maintenance line 24 Semantic Error
任何形式的帮助将不胜感激。 :)