在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

C語(yǔ)言assert(斷言)簡(jiǎn)介

CHANBAEK ? 來(lái)源: 嵌入式學(xué)習(xí)和實(shí)踐 ? 作者: 嵌入式學(xué)習(xí)和實(shí)踐 ? 2023-11-17 16:33 ? 次閱讀

一、assert(斷言)簡(jiǎn)介

assert的功能,條件為真,程序繼續(xù)執(zhí)行;如果斷言為假(false),則程序終止。

assert是個(gè) 宏定義

頭文件:

#include < assert.h >

原型:

void assert(scalar expression);

返回值:無(wú)返回值。

頭文件assert.h內(nèi)容如下:

/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
   This file is part of the GNU C Library.


   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.


   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.


   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   < http://www.gnu.org/licenses/ >.  */


/*
 *  ISO C99 Standard: 7.2 Diagnostics  < assert.h >
 */


#ifdef  _ASSERT_H


# undef  _ASSERT_H
# undef  assert
# undef __ASSERT_VOID_CAST


# ifdef  __USE_GNU
#  undef assert_perror
# endif


#endif /* assert.h  */


#define  _ASSERT_H  1
#include < features.h >


#if defined __cplusplus && __GNUC_PREREQ (2,95)
# define __ASSERT_VOID_CAST static_cast< void >
#else
# define __ASSERT_VOID_CAST (void)
#endif


/* void assert (int expression);


   If NDEBUG is defined, do nothing.
   If not, and EXPRESSION is zero, print an error message and abort.  */


#ifdef  NDEBUG


# define assert(expr)    (__ASSERT_VOID_CAST (0))


/* void assert_perror (int errnum);


   If NDEBUG is defined, do nothing.  If not, and ERRNUM is not zero, print an
   error message with the error text for ERRNUM and abort.
   (This is a GNU extension.) */


# ifdef  __USE_GNU
#  define assert_perror(errnum)  (__ASSERT_VOID_CAST (0))
# endif


#else /* Not NDEBUG.  */


#ifndef _ASSERT_H_DECLS
#define _ASSERT_H_DECLS
__BEGIN_DECLS


/* This prints an "Assertion failed" message and aborts.  */
extern void __assert_fail (const char *__assertion, const char *__file,
         unsigned int __line, const char *__function)
     __THROW __attribute__ ((__noreturn__));


/* Likewise, but prints the error text for ERRNUM.  */
extern void __assert_perror_fail (int __errnum, const char *__file,
          unsigned int __line, const char *__function)
     __THROW __attribute__ ((__noreturn__));




/* The following is not at all used here but needed for standard
   compliance.  */
extern void __assert (const char *__assertion, const char *__file, int __line)
     __THROW __attribute__ ((__noreturn__));




__END_DECLS
#endif /* Not _ASSERT_H_DECLS */


/* When possible, define assert so that it does not add extra
   parentheses around EXPR.  Otherwise, those added parentheses would
   suppress warnings we'd expect to be detected by gcc's -Wparentheses.  */
# if defined __cplusplus
#  define assert(expr)              
     (static_cast 
      ? void (0)              
      : __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION))
# elif !defined __GNUC__ || defined __STRICT_ANSI__
#  define assert(expr)              
    ((expr)                
     ? __ASSERT_VOID_CAST (0)            
     : __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION))
# else
/* The first occurrence of EXPR is not evaluated due to the sizeof,
   but will trigger any pedantic warnings masked by the __extension__
   for the second occurrence.  The ternary operator is required to
   support function pointers and bit fields in this context, and to
   suppress the evaluation of variable length arrays.  */
#  define assert(expr)              
  ((void) sizeof ((expr) ? 1 : 0), __extension__ ({      
      if (expr)                
        ; /* empty */              
      else                
        __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION);  
    }))
# endif


# ifdef  __USE_GNU
#  define assert_perror(errnum)            
  (!(errnum)                
   ? __ASSERT_VOID_CAST (0)            
   : __assert_perror_fail ((errnum), __FILE__, __LINE__, __ASSERT_FUNCTION))
# endif


/* Version 2.4 and later of GCC define a magical variable `__PRETTY_FUNCTION__'
   which contains the name of the function currently being defined.
   This is broken in G++ before version 2.6.
   C9x has a similar variable called __func__, but prefer the GCC one since
   it demangles C++ function names.  */
# if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4)
#   define __ASSERT_FUNCTION  __extension__ __PRETTY_FUNCTION__
# else
#  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
#   define __ASSERT_FUNCTION  __func__
#  else
#   define __ASSERT_FUNCTION  ((const char *) 0)
#  endif
# endif


#endif /* NDEBUG.  */




#if defined __USE_ISOC11 && !defined __cplusplus
# undef static_assert
# define static_assert _Static_assert
#endif

assert的定義如下:

圖片

此句意思如下:

expr為真,
執(zhí)行 __ASSERT_VOID_CAST (0)  ;
否則執(zhí)行 __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION))

條件表達(dá)式 ,偽代碼:

a?b:c
//如果a為真,執(zhí)行b;
//如果a為假,執(zhí)行c

二、測(cè)試代碼

參數(shù)數(shù)量為2,則輸出參數(shù)。否則輸出錯(cuò)誤信息,并終止程序執(zhí)行。測(cè)試代碼如下:

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


int main(int argv,char *argc[])
{
    printf("argv=%dn",argv);
    assert(argv== 2);
    printf("argc[1]=%sn",argc[1]);
    return 0;
}

圖片

圖片

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • C語(yǔ)言
    +關(guān)注

    關(guān)注

    180

    文章

    7614

    瀏覽量

    137339
  • 程序
    +關(guān)注

    關(guān)注

    117

    文章

    3794

    瀏覽量

    81255
  • 代碼
    +關(guān)注

    關(guān)注

    30

    文章

    4815

    瀏覽量

    68852
收藏 人收藏

    評(píng)論

    相關(guān)推薦

    C語(yǔ)言assert的使用

    assert意思是斷言,常用在程序的DEBUG版本中。
    發(fā)表于 07-21 14:51 ?895次閱讀

    什么是斷言C語(yǔ)言中斷言的語(yǔ)法和用法

    在軟件開(kāi)發(fā)過(guò)程中,我們經(jīng)常需要處理各種錯(cuò)誤和異常情況。為了提高代碼的健壯性和可靠性,我們需要使用一些工具和技術(shù)來(lái)檢測(cè)和處理這些問(wèn)題。本篇博客將深入探討C語(yǔ)言中斷言的使用,幫助讀者更好地理解和應(yīng)用斷言,提高代碼的質(zhì)量和可維護(hù)性。
    發(fā)表于 08-03 10:34 ?2873次閱讀

    解析C語(yǔ)言斷言函數(shù)的使用

    對(duì)于斷言,相信大家都不陌生,大多數(shù)編程語(yǔ)言也都有斷言這一特性。簡(jiǎn)單地講,斷言就是對(duì)某種假設(shè)條件進(jìn)行檢查。 在 C
    發(fā)表于 08-08 09:51 ?508次閱讀
    解析<b class='flag-5'>C</b><b class='flag-5'>語(yǔ)言</b><b class='flag-5'>斷言</b>函數(shù)的使用

    請(qǐng)問(wèn)HAL函數(shù)對(duì)Handle有效性的檢查為什么不是用assert_param斷言

    )); ...... } 以HAL_SPI_Init為例,hspi參數(shù)的檢查并沒(méi)有使用assert_param斷言宏,如果是我實(shí)現(xiàn)的話,我會(huì)用assert_param(hspi != NULL)實(shí)現(xiàn)。一般
    發(fā)表于 05-08 07:00

    斷言ASSERT)的用法

    STM32中經(jīng)常出現(xiàn)assert函數(shù),網(wǎng)上看了篇博客分享下:我一直以為assert僅僅是個(gè)報(bào)錯(cuò)函數(shù),事實(shí)上,它居然是個(gè)宏,并且作用并非“報(bào)錯(cuò)”。  在經(jīng)過(guò)對(duì)其進(jìn)行一定了解之后,對(duì)其作用及用法有了一定
    發(fā)表于 08-23 09:33

    C語(yǔ)言中斷言如何去使用

    文章目錄1 C語(yǔ)言中斷言的使用1.1 處理方式1.2 原型定義1.3 示例代碼1 C語(yǔ)言中斷言的使用1.1 處理方式如果斷言的條件返回錯(cuò)誤,
    發(fā)表于 07-14 08:15

    C語(yǔ)言中斷言是怎樣使用的?

    C語(yǔ)言中斷言是怎樣使用的?
    發(fā)表于 10-14 07:18

    何為斷言斷言該怎么使用呢

    存在錯(cuò)誤。因此,斷言是提高程序可靠性的有效手段。也是開(kāi)發(fā)階段快速定位問(wèn)題的一種很好防御式編程方法。在C語(yǔ)言中,斷言是一些條件判斷的宏。比如C
    發(fā)表于 09-21 14:59

    C語(yǔ)言簡(jiǎn)單概述

    C語(yǔ)言簡(jiǎn)介C語(yǔ)言簡(jiǎn)介C
    發(fā)表于 11-20 14:14 ?0次下載

    怎么理解Assert中的斷言語(yǔ)句?

    為什么項(xiàng)目中的代碼需要有Assert斷言語(yǔ)句?
    的頭像 發(fā)表于 03-03 14:12 ?2781次閱讀

    如何得當(dāng)使用C語(yǔ)言的特殊的用法

    C語(yǔ)言有很多特殊的用法,如果這些特殊用法使用得當(dāng),會(huì)是你的代碼變得更加有健壯,更加容易維護(hù)。 比如我們?cè)谑褂肧TM32庫(kù)的斷言assert),你會(huì)發(fā)現(xiàn)官方提供了包含__FILE__
    的頭像 發(fā)表于 09-27 10:41 ?1969次閱讀
    如何得當(dāng)使用<b class='flag-5'>C</b><b class='flag-5'>語(yǔ)言</b>的特殊的用法

    STM32函數(shù)庫(kù)Assert斷言機(jī)制

    編寫代碼時(shí),我們總是會(huì)做出一些假設(shè),斷言就是用于在代碼中捕捉這些假設(shè),可以將斷言看作是異常處理的一種高級(jí)形式。斷言表示為一些布爾表達(dá)式,程序員相信在程序中的某個(gè)特定點(diǎn)該表達(dá)式值為真。可以在任
    發(fā)表于 02-08 15:29 ?2次下載
    STM32函數(shù)庫(kù)<b class='flag-5'>Assert</b><b class='flag-5'>斷言</b>機(jī)制

    C語(yǔ)言進(jìn)階】利用assert高效排查你的C程序

    C語(yǔ)言進(jìn)階】利用assert高效排查你的C程序
    的頭像 發(fā)表于 08-31 13:27 ?2155次閱讀

    C語(yǔ)言斷言函數(shù)assert()的應(yīng)用,清晰明了!

    這樣可以快速發(fā)現(xiàn)并定位軟件問(wèn)題,同時(shí)對(duì)系統(tǒng)錯(cuò)誤進(jìn)行自動(dòng)報(bào)警。對(duì)于在系統(tǒng)中隱藏很深,用其他手段極難發(fā)現(xiàn)的問(wèn)題也可以通過(guò)斷言進(jìn)行定位,從而縮短軟件問(wèn)題定位時(shí)間,提高系統(tǒng)的可測(cè)性。
    的頭像 發(fā)表于 04-12 10:02 ?1147次閱讀

    防御式編程之斷言assert的使用

    防御式編程的重點(diǎn)就是需要防御一些程序未曾預(yù)料的錯(cuò)誤,這是一種提高軟件質(zhì)量的輔助性方法,斷言assert就用于防御式編程,編寫代碼時(shí),我們總是會(huì)做出一些假設(shè),斷言就是用于在代碼中捕捉這些假設(shè)。使用
    的頭像 發(fā)表于 04-19 11:35 ?703次閱讀
    主站蜘蛛池模板: 天天操天天舔天天干| 日本免费黄色录像| 黄色网一级片| 国模精品一区二区| 成年看片免费高清观看| 伊人干| 欧美夜夜夜| xxxx黄| 亚洲不卡免费视频| 俄罗斯美女在线观看一区| 天堂资源在线bt种子8| 深爱五月激情网| 美女视频很黄很暴黄是免费的| 国产三级 在线播放| 97玖玖| 免费看欧美一级片| 最近最新免费视频| 国产欧美一级片| 性天堂网| 婷婷春色| 免费在线欧美| 午夜伦伦| 欧美色图网站| 韩国免费人成在线观看网站| 俄罗斯一级成人毛片| 久久久精品久久久久久久久久久| 久久久综合视频| 国产国产人免费人成成免视频 | 天天干天天做天天射| 奇米福利视频| 综合啪啪| 美女视频黄a全部免费看小说| 亚洲人成电影在在线观看网色| 色五夜婷婷| 精品视频日本| 亚洲欲色| 国产精品久久久久久久免费大片| 一区二区三区影视| 一级国产特黄aa大片| 全黄毛片| 亚洲аv电影天堂网|