vote up 0 vote down star
1

Does Java pass by reference or value to C when using JNI ( more specifically Android NDK)

flag

2 Answers

vote up 4 vote down check

It depends on the type. Primitive types are passed by value and reference types by... reference. See http://java.sun.com/docs/books/jni/html/types.html

link|flag
vote up 1 vote down

I can't speak to Android, but JNI passes values just like Java does, primitive types are passed by value and all objects (including arrays) are passed by reference. The wiki article on JNI is pretty good.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.