我创建了一个类:
Data::Data(char szFileName[MAX_PATH]) {
string sIn;
int i = 1;
ifstream infile;
infile.open(szFileName);
infile.seekg(0,ios::beg);
std::vector<std::string> fileRows;
while ( getline(infile,sIn ) )
{
fileRows.push_back(sIn);
}
}
之后我创建了这个:
std::vector<std::string> Data::fileContent(){
return fileRows;
}
之后,我想在fileContent()
某个地方调用它,如下所示:
Data name(szFileName);
MessageBox(hwnd, name.fileContent().at(0).c_str() , "About", MB_OK);
但这不起作用......如何称呼这个?