Macro

NS_HANDLER

Marks the end of the exception-handling domain and the start of the local exception handler. 例外処理ドメインの終わりとローカル例外ハンドラの始まりを印します。

Declaration 宣言

#define NS_HANDLER

Discussion 議論

The NS_HANDLER macro marks end of a section of code that is an exception-handling domain while at the same time marking the beginning of a section of code that is a local exception handler for that domain. (The NS_DURING macro marks the beginning of the exception-handling domain; the NS_ENDHANDLER marks the end of the local exception handler.) If an exception is raised in the exception-handling domain, the local exception handler is first given the chance to handle the exception before lower-level handlers are given a chance. NS_HANDLERマクロは、例外処理ドメインであるところのコードのセクションの終わりを印します、一方で同時にそのドメインに対するローカル例外ハンドラであるところのコードの始まりを印しています。(NS_DURINGマクロは、例外処理ドメインの始まりを印します;NS_ENDHANDLERはローカル例外ハンドラの終わりを印します。)もしある例外が例外処理ドメインにおいて引き起こされるならば、ローカル例外ハンドラは最初に例外を処理する機会を与えられます、より低い水準のハンドラが機会を与えられる前に。

See Also 参照

Legacy Macros レガシーマクロ