__noop
Microsoft特定__noop
內部函數會指定應該忽略函式。 會剖析自變數清單,但不會為自變數產生任何程序代碼。 編譯程式會針對編譯程式警告 C4100 和類似的分析,將自變數視為參考。 內部 __noop
函數適用於採用可變自變數數目的全域偵錯函式。
編譯程式會在編譯時期將 __noop
內部函數轉換成 0。
範例
下列程式代碼示範如何使用 __noop
。
// compiler_intrinsics__noop.cpp
// compile using: cl /EHsc /W4 compiler_intrinsics__noop.cpp
// compile with or without /DDEBUG
#include <stdio.h>
#if DEBUG
#define PRINT printf_s
#else
#define PRINT __noop
#endif
#define IGNORE(x) { __noop(x); }
int main(int argv, char ** argc)
{
IGNORE(argv);
IGNORE(argc);
PRINT("\nDEBUG is defined\n");
}