打log
常见的C语言打log方法
# define DLog(format, ...) printf(("[filename:%s]" "[func_name:%s]" "[line_number:%d]" format), __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__);
这样可以接受可变长度的参数表
...表示就是可变长度
</pre><pre name="code" class="cpp">常见的android打log方法
define LOG_TAG "ANDROID" #define LOGD(fmt, args...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG, fmt, ##args)
也是可变长度参数表
使用方法和printf一样
LOGD("the length is %d",len);
版权声明:本文为博主原创文章,未经博主允许不得转载。
/**** Love U Love Myself ****/