c语言常用自定义函数名,C语言常用自定义宏

1.输出时带上文件名、函数名、代码行。

#define PRINT(...) do{ \

printf("%s---%s---%d---", __FILE__, __func__, __LINE__); \

printf(__VA_ARGS__); \

}while(0)

2.转成字符串,特殊符号不需要转义

#define STR(...) #__VA_ARGS__

int main()

{

printf("%s\n", STR(this is a str,no escape,json:{"a":"b"}) );

//对比

printf("%s\n", "this is a str, escape, json:{\"a\":\"b\"}" );

return 0;

}

3.置零

#define SET_0(x) memset((x), 0, sizeof((x)))

4.最大最小值

#define INT_MAX(a, b) \

({ typeof((a)) _a = (a); typeof((b)) _b = (b); _a>_b?_a:_b; })

#define INT_MIN(a, b) \

({ typeof((a)) _a = (a); typeof((b)) _b = (b); _a<_b>

5.用日志记录代替assert,避免程序退出,并记录日志

extern void Log_write(const char *filename, const char *content);

#define CATCH(try) \

do{ \

if(!(try)) { \

Log_write("FILE_NAME", #try); \

} \

}while(0)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值