C/C++语言中的assert函数用法

C库中的宏assert允许将诊断信息写入标准错误文件。也就是它可以用于在C程序中添加诊断程序。

声明:
void assert(int expression);

expression——可以是变量或任意C表达式。如果expression的计算结果为TRUE,则assert()不执行任何操作。如果expression的计算结果为FALSE,则assert()在标准错误流(用于显示错误消息和诊断的标准错误流)上显示错误消息,并中止程序执行。

举个例子:see: assert geeksforgeeks

#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;
}

这个程序的执行结果是:
Assertion failed: x==7, file test.cpp, line 13
This application has requested the Runtime to terminate it in an unusual
way. Please contact the application’s support team for more information.

参考资料:

  1. https://www.geeksforgeeks.org/assertions-cc/
  2. https://www.tutorialspoint.com/c_standard_library/c_macro_assert.htm
  • 6
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值