言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

AndroidJNIHelper.GetFieldID

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

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 def GetFieldID(javaClass as IntPtr, fieldName as string, signature as string = "", isStatic as bool = false) as IntPtr

Parameters

javaClass JavaクラスオブジェクトのRaw JNI (AndroidJNI.FindClassを呼び出すことで取得します).
fieldName Javaで宣言されたフィールドの名前
signature フィールドのシグネチャ(例: AndroidJNIHelper.GetSignatureを呼び出すことで取得します)
isStatic trueであればstaticフィールド、falseであれば(非static)フィールド

Description

名前とシグネチャにマッチングするフィールドのための特定のJavaクラスをスキャンします。

シグネチャの比較はクラス型のサブ/ベースクラスを許可するために行われます。 シグネチャ無しで提供されていれば最初に見つかったフィールドを返します。 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);
public static def GetFieldID(jclass as IntPtr, fieldName as string, isStatic as bool) as IntPtr

Parameters

isStatic trueであればstaticフィールド、falseであれば(非static)フィールド
javaClass JavaクラスオブジェクトのRaw JNI (AndroidJNI.FindClassを呼び出すことで取得します).
fieldName Javaで宣言されたフィールドの名前

Description

タイプ検出のベースとなるJNIフィールドIDを取得します。ジェネリックパラメーターはフィールドタイプを表しています。