AndroidJNIHelper.GetFieldID.<FieldType> 获取域ID
static function GetMethodID.<ReturnType> (jclass : System.IntPtr, methodName : string, args : object[], isStatic : bool) : System.IntPtr
Parameters参数
- javaClassRaw JNI Java class object (obtained by calling AndroidJNI.FindClass).
原JNI类对象 -
fieldNameName of the field as declared in Java.
在Java定义的域名 -
isStaticSet to true for static methods; false for instance (nonstatic) methods.
设置true为静态方法;false为实例(非静态)的方法。
Description描述
Get a JNI field ID based on type detection. Generic parameter represents the field type.
获取一个JNI域ID,根据检测的类型。泛型参数表示域类型。
Scans a particular Java class for a field matching a signature of the field type. The signature comparison is done to allow for sub-/base-classes of the class types.
扫描一个特定的Java类,用于一个域匹配一个域类型的签名。这个签名比较是为了允许类的类型的sub-/base-classes。
最后修改:2011年4月10日 Sunday 13:29