Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
670 views
in Technique[技术] by (71.8m points)

java - How to know the jclass to which a jobject belongs (JNI)

I need to call the same native C method from my JNI code. This method receives a generic jobject object, but its behavior is different depending on the type of the object itself.

I have two jclass objects, named activityCls and fragmentCls (which respectively map an Activity class and a Fragment class in Java). What can I do in order to know if the given jobject object is of kind activityCls or fragmentCls?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

How about using IsInstanceOf?

IsInstanceOf

jboolean IsInstanceOf(JNIEnv *env, jobject obj, jclass clazz);

Tests whether an object is an instance of a class.

JNI documentation


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...