免费注册 手机版 网站地图 小工具

学而优·知识库

首 页
请把下述代码加上异常处理。int MyWriteFile(CString strFileName, CString strText) { int nR
请把下述代码加上异常处理。
int MyWriteFile(CString strFileName, CString strText)
{
int nRet = 0;
CFile myFile;
myFile.Open(strFileName, CFile::modeWrite|CFile::shareExclusive|CFile::modeCreate,
NULL);
int nLen = strText.GetLength();
myFile.Write((char*)(LPCSTR)strText, nLen);
myFile.Close();
return nRet;
}
参考答案

关闭

前往注册

我已注册,登录账号 继续查看答案