C語言 標準庫 <assert.h>
c語言 標準庫 <assert.h>
c 標準庫的 assert.h頭文件提供了一個名為 assert 的宏,它可用于驗證程序做出的假設,并在假設為假時輸出診斷消息。
已定義的宏 assert 指向另一個宏 ndebug,宏 ndebug 不是 <assert.h> 的一部分。如果已在引用 <assert.h> 的源文件中定義 ndebug 為宏名稱,則 assert 宏的定義如下:
#define assert(ignore) ((void)0)
1. 庫宏
下面列出了頭文件 assert.h 中定義的唯一的函數(shù):
序號 | 函數(shù) & 描述 |
---|---|
1 | void assert(int expression) 這實際上是一個宏,不是一個函數(shù),可用于在 c 程序中添加診斷。 |