比如我用CStdioFile类打开一个文件,按行读取CStdioFile file;if (!(file.Open(filename, CFile::modeRead))) {AfxMessageBox(_T("文件打开失败")); return false;}CString strT;while (file.ReadString(strT)) {if (strT.Find("正确")!= -1)return true;};无论文件里有没有“正确”结果都是未找到