次の方法で共有


DEBUG_ONLY

デバッグ モードでは ( _DEBUG シンボルが定義されている場合、 DEBUG_ONLY は、引数を評価します。

DEBUG_ONLY(expression )

解説

リリース ビルドでは、 DEBUG_ONLY は、引数を評価されません。これは、デバッグ ビルドでのみ実行するコードがある場合に便利です。

DEBUG_ONLY のマクロは #ifdef _DEBUG と #endifの周囲の と同等です。

使用例

void ExampleFunc(char* p, int size, char fill)
{
   char* q;               // working copy of pointer 
   VERIFY(q = p);         // copy buffer pointer and validate
   ASSERT(size >= 100);   // make sure buffer is at least 100 bytes
   ASSERT(isalpha(fill)); // make sure fill character is alphabetic
   // if fill character is invalid, substitute 'X' so we can continue
   // debugging after the preceding ASSERT fails.
   DEBUG_ONLY(fill = (isalpha(fill)) ? fill : 'X');
}

必要条件

ヘッダー : afx.h

参照

関連項目

ASSERT (MFC)

VERIFY

概念

MFC マクロとグローバル