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

スクリプト言語

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

AndroidJavaObject.SetStatic

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 function SetStatic(fieldName: string, val: FieldType): void;
public void SetStatic(string fieldName, FieldType val);
public def SetStatic(fieldName as string, val as FieldType) as void

Parameters

fieldName フィールド名(例: <i>int counter;</i> であればフィールド名は "counter" です)
val フィールドに割り当てられた値。これはフィールドの型にマッチする必要があります。

Description

staticのフィールドにオブジェクト型の値を設定する

フィールドの型はジェネリックス型です。

	// Create an object of user provided class org.example.StaticFields,
	// and set the value of field 'globalName'.
	function Start() {
		var jo = new AndroidJavaObject("org.example.StaticFields");
		jo.Set.<String>("globalName", "this_is_the_name");
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Start() {
        AndroidJavaObject jo = new AndroidJavaObject("org.example.StaticFields");
        jo.Set<string>("globalName", "this_is_the_name");
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Start() as void:
		jo as AndroidJavaObject = AndroidJavaObject('org.example.StaticFields')
		jo.Set[of string]('globalName', 'this_is_the_name')