此文版权属于作者所有,任何人、媒体或者网站转载、借用都必须征得作者本人同意!
#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