msdn 英文之try, catch, and throw Statements

 

 
 


 

y-block :
try compound-statement handler-list

handler-list :
handler handler-listopt

handler :
catch ( exception-declaration ) compound-statement

exception-declaration :
type-specifier-list declarator
type-specifier-list abstract-declarator
type-specifier-list
...

throw-expression :
throw assignment-expressionopt

 

·           The compound-statement after the try clause is the guarded section of code. The throw-expression “throws” (raises) an exception. The compound-statement after the catch clausen. 条款;子句 is the exception handler, and “catches” (handles) the exception thrown by the throw-expression. The exception-declaration statement indicates the type of exception the clause handles. The type can be any valid data type, including a C++ class. If the exception-declaration statement is an ellipsis (省略...), the catch clause handles any type of exception, including a C exception. Such a handler must be the last handler for its try-block.



compound ['kɔmpaund, kəm'paund]

  • vt. 混合;合成;和解妥协;搀合
  • vi. 妥协;和解
  • n. 化合物;复合词;混合物
  • adj. 复合的;混合的

原文链接: https://www.cnblogs.com/pipicfan/archive/2012/01/07/2316183.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    msdn 英文之try, catch, and throw Statements

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/39891

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 下午4:33
下一篇 2023年2月8日 下午4:33

相关推荐