voidlogExample() { __android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, "This is a VERBOSE log"); __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, "This is a DEBUG log"); __android_log_print(ANDROID_LOG_INFO, LOG_TAG, "This is an INFO log"); __android_log_print(ANDROID_LOG_WARN, LOG_TAG, "This is a WARN log"); __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "This is an ERROR log"); __android_log_print(ANDROID_LOG_FATAL, LOG_TAG, "This is a FATAL log"); }
ndk初始化函数与构造函数
_init 函数
_init 函数与程序初始化有关。它会在动态库被加载时自动调用,通常用于执行一些初始化操作。
1 2 3
extern"C"void _init() { }
attribute((constructor))构造函数
指定函数为构造函数,使得它们在程序或动态库加载时自动执行。
1 2 3
__attribute__ ((constructor)) voidinit_function1() { __android_log_print(ANDROID_LOG_DEBUG, "initTest", "This is a init_function1 log"); }