JNI Tips 1.In this document JavaVM and JNIEnv Threads jclass, jmethodID, and jfieldID Local and Global References UTF-8 and UTF-16 Strings Primitive Arrays Region Calls Exceptions Extended Checking Native Libraries 64-bit Considerations Unsupported F…
Performance Tips 1.In this document Avoid Creating Unnecessary Objects 避免多余的对象 Prefer Static Over Virtual 多用static方法,它比其它方法快15%-20% Use Static Final For Constants 多用 static final 基本类型常量 Avoid Internal Getters/Setters 在类内部避免使用getter,setter而直接使用成员…