Macro

NSCAssert1

Generates an assertion if a given condition is false. 与えられた条件がfalseならば、アサーションを生成します。

Declaration 宣言

#define NSCAssert1(condition, desc, arg1)

Discussion 議論

Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception. アサーションは、ある条件を評価します、そして、もしその条件が偽に評価されるならば、アサーションハンドラを現在のスレッドに対して呼び出して、それにある書式設定文字列とある可変の数の引数を渡します。各スレッドは、それ自身のアサーションハンドラを持ちます、それはクラスNSAssertionHandlerのオブジェクトです。発動した時、アサーションハンドラはあるエラーメッセージを出力します、それはメソッドおよびクラス名(または関数名)を含みます。それはそれからNSInternalInconsistencyException例外を引き起こします。

The NSCAssert1 macro evaluates the condition and serves as a front end to the assertion handler. This macro should be used only within C functions. NSCAssert1マクロは、条件を評価します、そしてアサーションハンドラに対するフロントエンドとして奉仕します。このマクロは、C関数内でのみ使われるべきです。

The condition expression must evaluate to true or false. description is a printf-style format string that describes the failure condition. arg1 is an argument to be inserted, in place, into the description. condition式は、trurまたはfalseに評価しなければなりません。descriptionは、printfスタイルの書式設定文字列です、それは失敗状態を記述します。arg1は、記述へと、その場で、挿入される引数です。

Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All assertion macros return void. アサーションは、プリプロセッサマクロNS_BLOCK_ASSERTIONSが定義されるならば使用不可にされます。アサーションマクロは、voidを返します。

See Also 参照

Assertions アサーション

Related Documentation 関連文書