CallStaticLongMethod

Prototypes

jlong JNIEnv::CallStaticLongMethod(jclasse Classe, jmethodID IdentifiantMethode, ...);

Description

Invoque la méthode statique identifiée par IdentifiantMethode sur la classe Classe.

Cette méthode est une fonction retournant un long. Les paramètres sont transmis après l'identifiant de la méthode.

Exemple

Java

package MonPaquet;

class MaClasse
{
static boolean MaMethodeBoolean(int A);
static byte MaMethodeByte(int A);
static char MaMethodeChar(int A);
static double MaMethodeDouble(int A);
static float MaMethodeFloat(int A);
static int MaMethodeInt(int A);
static long MaMethodeLong(int A);
static Object MaMethodeObject(int A);
static short MaMethodeShort(int A);
static String MaMethodeString(int A);
static void MaMethodeVoid(int A);
...
}

C++

#include <jni.h>

JNIEnv *pEnv;
jclass pMaClasse;
jmethodID IdentifiantMethode;
jlong Resultat;
jint Parametre;

...
IdentifiantMethode=pEnv->GetStaticMethodId(pMaClasse, "MaMethodeLong", "(I)J");
if (!IdentifiantMethode)
...
Resultat=pEnv->CallStaticLongMethod(pMaClasse, IdentifiantMethode, Parametre);
...

Avertissement

Néant.

Voir aussi

GetStaticMethodID pour retrouver l'identifiant d'une méthode.
CallStaticBooleanMethod, CallStaticByteMethod, CallStaticCharMethod, CallStaticDoubleMethod, CallStaticFloatMethod, CallStaticIntMethod, CallStaticObjectMethod, CallStaticShortMethod et CallStaticVoidMethod pour appeler une méthode avec un autre type de résultat.