我得到兩個語法?即使項目建立成功,也會出現錯誤。我的代碼的某些部分突出顯示爲紅色在Visual Studio中,我在評論以下位置:C++,無法打開源文件「ifstream」Visual Studio
#include <vector>
#include <string>
#include <iostream>
#include <ifstream> //include is highlighted// Error: cannot open source file "ifstream"
using namespace std;
class DictionarySorter{
public:
DictionarySorter(){
}
void readDic(string name){
ifstream dicFile (name); //dicFile is highlighted here// Error: incomplete type is not allowed
}
private:
vector<string> v;
};
我在引用一個Youtube教程,它使用了ifstream頭....你是對的。 – haris