Programming 版 (精华区)
发信人: Mice (做梦的鼠儿), 信区: Programming
标 题: VC(mfc)-------异常处理类(1)
发信站: 紫丁香 (Tue Oct 7 08:23:49 1997)
异常处理类的使用
VC异常处理简介:
#1 CException类 其他异常处理类的根
#2 CMemoryException类 内存异常处理
#3 CFileException类 文件异常处理
#4 CArchiveException类 归档异常处理
#5 CResourceException类 资源异常处理
#6 CUserException类 用户异常处理
#7 CNotSupportedException类 未支持异常处理
#8 COleException类 OLE异常处理
Visual C++异常处理语法:
TRY
{
//statments that may raise one or more errors
·
·
·
}
CATCH(exceptionClass1,e)
{
// statments to handle error of exceptionClass1
}
AND_CATCH(exceptionClass2,e)
{
// statments to handle error of type exceptionClass2
}
AND_CATCH(exceptionClass3,e)
{
// statments to handle error of type exceptionClass3
}
// other AND_CATCH blocks
AND_CATCH(exceptionClassN,e)
{
// statments to handle error of type exceptionClass4
}
}
END_CATCH
--
我是一只好老鼠!
/>>>
(*>
()%\%\%\%|*|33333333333333333333333333333333333>
(*>
\>>>
※ 来源:.紫丁香 pclinux.hit.edu.cn.[FROM: 202.118.226.75]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:3.572毫秒