在用c++开发的jni的时候 注意函数名加extern “C”
extern “C” void a(int t){ } 会用c去编译 生成 函数名为 a
void a(int t){ } 会用c++去编译 生成 函数名为 a_int (为了函数重载)
参考点击跳转