Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

AndroidJNIHelper.GetFieldID

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function GetFieldID(javaClass: IntPtr, fieldName: string, signature: string = "", isStatic: bool = false): IntPtr;
public static IntPtr GetFieldID(IntPtr javaClass, string fieldName, string signature = "", bool isStatic = false);
public static function GetFieldID(javaClass: IntPtr, fieldName: string, signature: string = "", isStatic: bool = false): IntPtr;
public static IntPtr GetFieldID(IntPtr javaClass, string fieldName, string signature = "", bool isStatic = false);
public static function GetFieldID(javaClass: IntPtr, fieldName: string, signature: string = "", isStatic: bool = false): IntPtr;
public static IntPtr GetFieldID(IntPtr javaClass, string fieldName, string signature = "", bool isStatic = false);

Parámetros

javaClass Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).
fieldName Name of the field as declared in Java.
signature Field signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).
isStatic Set to true for static fields; false for instance (nonstatic) fields.

Descripción

Scans a particular Java class for a field matching a name and a signature.

The signature comparison is done to allow sub-/base-classes of a class types. If no signature is provided the first field with the correct name will be returned.

See Also: AndroidJNIHelper.GetSignature, AndroidJNIHelper.GetConstructorID, AndroidJNIHelper.GetMethodID.


public static function GetFieldID(jclass: IntPtr, fieldName: string, isStatic: bool): IntPtr;
public static IntPtr GetFieldID(IntPtr jclass, string fieldName, bool isStatic);

Parámetros

javaClass Raw JNI Java class object (obtained by calling AndroidJNI.FindClass).
fieldName Name of the field as declared in Java.
isStatic Set to true for static fields; false for instance (nonstatic) fields.

Descripción

Get a JNI field ID based on type detection. Generic parameter represents the field type.

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.