避免直接依赖 android log 库

前端之家收集整理的这篇文章主要介绍了避免直接依赖 android log 库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

此文版权属于作者所有,任何人、媒体或者网站转载、借用都必须征得作者本人同意!

#include <android/log.h>
#include <dlfcn.h> /* dlsym */

typedef int (*log_print_fun)(int,const char*,...);
static log_print_fun log_print =
        (log_print_fun) dlsym(RTLD_DEFAULT,"__android_log_print");
  static const char LOG_TAG[] = "helloworld";
#define LOGT(...) log_print(ANDROID_LOG_VERBOSE,LOG_TAG,__VA_ARGS__)
#define LOGW(...) log_print(ANDROID_LOG_DEBUG,__VA_ARGS__)
原文链接:https://www.f2er.com/javaschema/283940.html

猜你在找的设计模式相关文章