我试图解决这个问题,出于某种原因,我不断得到这个:
没有“getline”实例与参数列表匹配。
我查过这个问题很多次,因为人们使用ofstream,或者他们不使用ifstream 对象(如果我说得对的话)具有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;