写程序的时候经常需要调试,下面给出静态和动态断言调试以及常用的内置宏。
内置宏:
__FILE__//输出文件名
__LINE__//所在行
__DATE__//日期
__TIME__//时间
__FUNCTION__//函数名
static_assert( constant-expression, string-literal );静态断言是在编译时候用的,因此第一参数的值必须在编译的时候就能确定,比如长量。如果第二参数为提示信息。如果第一个参数的表达式值为假则在编译的时候会出错,并给出
第二参数值。
void assert( int expression );动态断言在程序运行时候用的,如果表达式的结果为假,则会中断程序。
#include<iostream> #include<assert.h> using namespace std; void test(int mouth) { assert(mouth>=1&&mouth<=12);//动态断言 cout<<__FILE__<<endl;//输出文件名 cout<<__LINE__<<endl;//所在行 cout<<__DATE__<<endl;//日期 cout<<__TIME__<<endl;//时间 cout<<__FUNCTION__<<endl;//函数名 } int main() { int mouth=12; static_assert(sizeof(void *) == 4, "64-bit code generation is not supported.");//静态断言,如果是64 位系统则不支持 test(mouth); cin.get(); return 0; }
原文地址:http://blog.csdn.net/huangshanchun/article/details/46349875