首页 > 代码库 > assert的用处
assert的用处
ASSERT函数是用于调试中,也就是说在你的代码中当是Debug的时候
它完成对参数的判断,如果是TRUE则什么都不做,如果是FALSE则
弹出一个程序中断对话框提示程序出现错误。
在Release版本中它是什么作用都不起。
它主要是监视程序在调试运行的过程中的运行情况,
多多使用它,绝对有好处,没有一点坏处。
例如:
/* ASSERT.C: In this program, the analyze_string function uses * the assert function to test several conditions related to * string and length. If any of the conditions fails, the program * prints a message indicating what caused the failure. */#include <stdio.h>#include <assert.h>#include <string.h>void analyze_string( char *string ); /* Prototype */void main( void ){ char test1[] = "abc", *test2 = NULL, test3[] = ""; printf ( "Analyzing string ‘%s‘\n", test1 ); analyze_string( test1 ); printf ( "Analyzing string ‘%s‘\n", test2 ); analyze_string( test2 ); printf ( "Analyzing string ‘%s‘\n", test3 ); analyze_string( test3 );}/* Tests a string to see if it is NULL, */ /* empty, or longer than 0 characters */void analyze_string( char * string ){ assert( string != NULL ); /* Cannot be NULL */ assert( *string != ‘\0‘ ); /* Cannot be empty */ assert( strlen( string ) > 2 ); /* Length must exceed 2 */}OutputAnalyzing string ‘abc‘Analyzing string ‘(null)‘Assertion failed: string != NULL, file assert.c, line 24abnormal program termination
assert的用处
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。