CPlusPlusThings/english/basic_content/assert
2020-07-19 15:10:07 +08:00
..
assert.c english 2020-07-19 10:38:38 +08:00
ignore_assert.c english 2020-07-19 10:38:38 +08:00
README.md Update README.md 2020-07-19 15:10:07 +08:00

Things about assert

About Author

1.First assertion case

assertis macrorather than function

assert The prototype of a macro is defined in <assert.h>CC++.If its condition returns an errorProgram execution is terminated.

You can close assert by defining 'ndebug', But it needs to be at the beginning of the source codebefore include <assert.h>.

void assert(int expression);

Code Exampleassert.c

#include <stdio.h> 
#include <assert.h> 

int main() 
{ 
    int x = 7; 

    /*  Some big code in between and let's say x  
    is accidentally changed to 9  */
    x = 9; 

    // Programmer assumes x to be 7 in rest of the code 
    assert(x==7); 

    /* Rest of the code */

    return 0; 
} 

Output

assert: assert.c:13: main: Assertion 'x==7' failed.

2.Assertion and normal error handling

  • Assertions are mainly used to check for logically impossible situations.

For example, they can be used to check the state that code expects before it starts to run, or after the run is complete. Unlike normal error handling, assertions are usually disabled at run time.

  • Ignore the assertion and add at the beginning of the code
#define NDEBUG          // Adding this linethen you do not need the assert

Code Exampleignore_assert.c