zoukankan      html  css  js  c++  java
  • assert C++ Reference

    assert - C++ Reference

    assert

    <cassert>
    void assert (int expression);
    Evaluate assertion

    If the argument expression of this macro with functional form compares equal to zero (i.e., the expression is false), a message is written to the standard error device and abort is called, terminating the program execution.



    The specifics of the message shown depend on the specific implementation in the compiler, but it shall include: the expression whose assertion failed, the name of the source file, and the line number where it happened. A usual expression format is:



    Assertion failed: expression, file filename, line line number


    This macro is disabled if at the moment of including assert.h a macro with the name NDEBUG has already been defined. This allows for a coder to include many assert calls in a source code while debugging the program and then disable all of them for the production version by simply including a line like:

    #define NDEBUG
    at the beginning of its code, before the inclusion of assert.h.



    Therefore, this macro is designed to capture programming errors, not user or running errors, since it is generally disabled after a program exits its debugging phase.


    Parameters

    expression
    Expression to be evaluated. If this expression evaluates to 0, this causes an assertion failure that terminates the program.

    Return Value

    none


    Example

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    
    /* assert example */
    #include <stdio.h>
    #include <assert.h>
    
    void print_number(int* myInt) {
      assert (myInt!=NULL);
      printf ("%d\n",*myInt);
    }
    
    int main ()
    {
      int a=10;
      int * b = NULL;
      int * c = NULL;
    
      b=&a;
    
      print_number (b);
      print_number (c);
    
      return 0;
    }





    In this example, assert is used to abort the program execution if print_number is called with a null pointer as attribute. This happens on the second call to the function, which triggers an assertion failure to signal the bug.

  • 相关阅读:
    WebAPI下的如何实现参数绑定
    MYSQL主从不同步延迟原理
    mysql的limit经典用法及优化
    ASP.NET MVC中的模型绑定
    使用EF实现数据库的增删改查
    NoSQL数据库技术特性解析之文档数据库
    MySQL 缓存 Query Cache
    Loadrunner test web service which need username and password
    vb写文件时报'Invalid procedure call or argument'
    Shell 笔记
  • 原文地址:https://www.cnblogs.com/lexus/p/2591830.html
Copyright © 2011-2022 走看看