想你

常用链接

统计

最新评论

为什么不向visual assist取取经呢?
re: loki技法(1).静态断言 主打歌 2010-09-06 23:10
让boost, c++设计新思维统统去见鬼吧。看哥的静态断言的巧妙实现吧。

可以在下列范围内使用(已经在vc,gcc中测试):
在名字空间域中使用 ;
在函数域中使用 ;
在类域中使用 ;
在类模板中使用 。
在函数模板中使用 。

比boost强大的是关键是还能支持c语言,不使用模版使得编译时间大大缩短!!还能够打印自定义的错误信息(我想这比啥都强)。
注意:gcc 的c编译器居然允许0除以0的结果作为数组长度。此时只有警告,但是程序启动就会立即产生浮点数异常,退出。g++工作正常。vc的c编译器工作正常。
#define JOIN(x,y) x ## y
#define JOIN_1(x,y) JOIN(x, y)
#define JOIN_2(x,y) JOIN_1(x, y)

/*It's the begin of all error message.*/
#define ERRORMSG_BEGIN ATTENTION__The_assertion_error_is__

/*
*To fetch a error if testnum==0||testnum==false, by divide 0.
*Cast to int to avoid warning caused by bool division.
*/
#define IF_ERROR(testnum) (((int)(testnum))/((int)(testnum)))


/*
*The errormsg only support following characters: [a-zA-Z0-9] and '_'.
*Because it's a part of variable's name.
*Example:STATIC_ASSERT(sizeof(int) <= sizeof(short), The_sizeof_int_is_larger_than_short__)
*For above example, (Most) compilers can print error include following message:
ATTENTION__The_assertion_error_is__The_sizeof_int_is_larger_than_short__234
*The number in the end is the linenumber of the position of the macro been called.
*/
#ifndef NDEBUG
#ifndef _MSC_VER
#define STATIC_ASSERT(testnum, errormsg) static char JOIN_2(JOIN_1(ERRORMSG_BEGIN,errormsg),__LINE__)[IF_ERROR(testnum)];
#else
#define STATIC_ASSERT(testnum, errormsg) static char JOIN_1(ERRORMSG_BEGIN,errormsg)[IF_ERROR(testnum)];
#endif
#else
#define STATIC_ASSERT(testnum, errormsg)
#endif

//有看不懂英文的请留言咨询。
正好2000年是闰年,不然你惨了。不过正好100年内不错,不管了。
还有那个夏时令的标志最好清空设置
ret_time->tm_isdst = 0;
多谢先生了。