1
ofstream myfile;
myfile.open(filename,ios::out | ios::app);
if(myfile.good()){ do smtg};
myfile.write(taskToWrite->buffer,taskToWrite->length);
反正是有檢查寫功能不起作用? 我以前用good()檢查過,但如果寫入時出錯,我該如何檢查? 我不明白函數返回什麼。