安卓动态调用so里面的函数
void *handle = dlopen("libtest.so"); typedef char* (*func)(); func f = reinterpret_cast<func>(dlsym(handle,"methodFromSo")); const char* result = f();
void *handle = dlopen("libtest.so"); typedef char* (*func)(); func f = reinterpret_cast<func>(dlsym(handle,"methodFromSo")); const char* result = f();