Defined in header <assert.h> | ||
---|---|---|
#ifdef NDEBUG #define assert(condition) ((void)0) #else #define assert(condition) /*implementation defined*/ #endif |
The definition of the macro assert
depends on another macro, NDEBUG
, which is not defined by the standard library.
If NDEBUG
is defined as a macro name at the point in the source code where <assert.h>
is included, then assert
does nothing.
If NDEBUG
is not defined, then assert
checks if its argument (which must have scalar type) compares equal to zero. If it does, assert
outputs implementation-specific diagnostic information on the standard error output and calls abort()
. The diagnostic information is required to include the text of expression
, as well as the values of the standard macros __FILE__
, __LINE__
, and the predefined variable __func__
. (since C99).
condition | - | expression of scalar type |
(none).
#include <stdio.h> // uncomment to disable assert() // #define NDEBUG #include <assert.h> #include <math.h> int main(void) { double x = -1.0; assert(x >= 0.0); printf("sqrt(x) = %f\n", sqrt(x)); return 0; }
Output:
output with NDEBUG not defined: a.out: main.cpp:10: main: Assertion `x >= 0.0' failed. output with NDEBUG defined: sqrt(x) = -nan
causes abnormal program termination (without cleaning up) (function) |
|
C++ documentation for assert |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/c/error/assert