標準庫標頭檔案 <assert.h>
來自 cppreference.com
此標頭檔案是錯誤處理庫的一部分。
宏 | |
如果使用者指定的條件不為 true,則中止程式。可以在釋出版本中停用。 (函式宏) |
[編輯] 概要
#if __STDC_VERSION__ >= 202311L # define __STDC_VERSION_ASSERT_H__ 202311L # ifdef NDEBUG # define assert(...) ((void)0) # else # define assert(...) /* implementation-defined */ # endif #else # ifdef NDEBUG # define assert(condition) ((void)0) # else # define assert(condition) /* implementation-defined */ # endif #endif