2012年9月13日

摘要: 这个也得看!http://msdn.microsoft.com/en-us/library/ms680657(v=vs.85).aspx 阅读全文
posted @ 2012-09-13 19:47 做个不善的人 阅读(200) 评论(0) 推荐(0)
 
摘要: 先占个地,看了一半,找时间全部翻译一下,很好的文章 摘译自:http://www.codeproject.com/Articles/2126/How-a-C-compiler-implements-exception-handling 一篇很好的总结文章: C与C++中的异常处理.pdf 下载地址是:http://ishare.iask.sina.com.cn/f/19763181.html 阅读全文
posted @ 2012-09-13 19:25 做个不善的人 阅读(270) 评论(0) 推荐(0)
 
摘要: Exception specifications Exception specifications are used to provide summary information about what exceptions can be thrown out of a function. For example:voidMyFunction(inti)throw(...);An exception specification with an empty throw, as invoidMyFunction(inti)throw();tells the compiler that the fun 阅读全文
posted @ 2012-09-13 18:24 做个不善的人 阅读(548) 评论(0) 推荐(0)