我想弄清楚這個問題了,由於某種原因,我不斷收到此相匹配很多時候,因爲人們使用了流,或者他們不使用ifstream對象(如果我說得對的話)具有getline的第一個屬性。我很迷茫。與ifstream的使用函數getline沒有「函數getline」的實例參數列表
#include <string>
std::wifstream myfile;
myfile.open("LaunchLocations.txt");
getline(myfile, gameLaunchtest.directory);
struct gameLaunch
{
wchar_t directory[MAX_PATH];
wchar_t AppName[MAX_PATH];
wchar_t ComboBoxName[MAX_PATH];
}gameLaunchtest;
你的意思'的std ::函數getline()'那裏? –
並且'目錄'聲明爲'std :: wstring'? –
我試圖用函數getline從包括 但我也用的std ::函數getline(IDK的,如果它們是相同的,我是很新的C++編程) 但不管怎麼說,當我做的std ::函數getline我收到錯誤: 沒有重載函數「std :: getline」的實例匹配參數列表 –