In my JNI program, I use
new
delete
env->NewGlobalRef
env->DeleteGlobalRef
jvm->AttachCurrentThread
jvm->DetachCurrentThread
What is a good way to check for memory leaks rigorously?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Make sure that every
new,env->NewGlobalRefandjvm->AttachCurrentThreadis in the constructor of an object which calls the matching deallocation function in its destructor.This is a technique called RAII, which is vital to writing any correct program in C++.