术语 | CFileException::m_cause | |||||||||||||||||||||||||||||||||||||||||||||
释义 | CFileException::m_cause 说明: 包含由CFileException枚举类型定义的值。此数据成员是一个公共的int类型变量,枚举符与含义如下:
这些CFileException原因枚举符与CArchiveException原因枚举符不一样。 示例: // example for CFileException::m_cause extern char* pFileName TRY { CFile f(pFileName,CFile::modeCreate | CFile::modeWrite); } CATCH (CFileException,e) { if(e->m_cause == CFileException::FileNotFound) printf("ERROR:File not found\"; } END_CATCH |
|||||||||||||||||||||||||||||||||||||||||||||
随便看 |
|
MFC类库中文详解手册包含4274条MFC类库参考词条,基本涵盖了Microsoft基本类库中的类、全局函数、全局变量和宏的内容,是计算机编程的有利工具。