断言是一个语句,用于肯定地声明当到达该行代码时事实必须为真。
断言对于获取满足的预期条件很有用。
>简单断言可以通过assert(表达式)方法实现,该方法位于assert.h头文件中。
简单断言的语法如下 -
assert(expression)
在简单的断言中,
断言仅用于捕获内部编程错误。这些错误是通过传递错误参数而发生的。
以下是C编程语言中简单断言的示例程序:
在线演示
#include <stdio.h> #include <assert.h> int main(void){ int x; printf("Enter the value of x:</p><p>"); scanf("%d",&x); assert(x >= 0); printf("x = %d</p><p>", x); return 0; }
当上述程序被执行时,它产生以下输出 −
Run 1: Enter the value of x: 20 x = 20 Run 2: Enter the value of x: -3 Assertion failed! Program: G:\CP\CP programs\test.exe File: G:\CP\CP programs\test.c, Line 10 Expression: x >= 0
以上是在C语言中,什么是简单断言?的详细内容。更多信息请关注PHP中文网其他相关文章!