facebook twitter hatena line email

「Unity/Csharp/Action」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==Actionサンプル== <pre> System.Action<string> OnMsg = delegate (string msg) { }; OnMsg += (msg) => { Debug.Log("msg1:" + msg); }; OnMsg("hello"); </pre>」)
 
(Setup()の部分、ラムダ式の変数に分けると、こうかける)
 
(同じ利用者による、間の9版が非表示)
行1: 行1:
==Actionサンプル==
+
==Actionとは==
 +
関数を変数にできるもの
 +
 
 +
==Actionサンプル1==
 
<pre>
 
<pre>
 
System.Action<string> OnMsg = delegate (string msg) { };
 
System.Action<string> OnMsg = delegate (string msg) { };
行6: 行9:
 
     Debug.Log("msg1:" + msg);
 
     Debug.Log("msg1:" + msg);
 
};
 
};
 +
 +
// 呼び出し
 
OnMsg("hello");
 
OnMsg("hello");
 +
</pre>
 +
 +
===ラムダ式だとこうかける===
 +
<pre>
 +
System.Action<string> OnMsg = (msg) =>
 +
{
 +
    Debug.Log("msg1:" + msg);
 +
};
 +
 +
// 呼び出し
 +
OnMsg("hello");
 +
</pre>
 +
 +
==Actionサンプル2(別クラス呼び出し)==
 +
<pre>
 +
public class ActionScene : MonoBehaviour
 +
{
 +
    void Start()
 +
    {
 +
        var eventActionClass = new EventActionClass();
 +
        eventActionClass.Setup(
 +
            callOnAction: () =>
 +
            {
 +
                Debug.Log("callOnAction");
 +
            },
 +
            callOffAction: () =>
 +
            {
 +
                Debug.Log("callOffAction");
 +
            });
 +
    }
 +
}
 +
public class EventActionClass
 +
{
 +
    public void Setup(System.Action callOnAction, System.Action callOffAction)
 +
    {
 +
        callOnAction();
 +
        callOffAction();
 +
    }
 +
}
 +
 +
</pre>
 +
 +
===Setup()の部分、ラムダ式の変数に分けると、こうかける===
 +
<pre>
 +
public class ActionScene : MonoBehaviour
 +
{
 +
    void Start()
 +
    {
 +
        System.Action onAction = () =>
 +
        {
 +
            Debug.Log("callOnAction");
 +
        };
 +
        System.Action offAction = () =>
 +
        {
 +
            Debug.Log("callOffAction");
 +
        };
 +
        var eventActionClass = new EventActionClass();
 +
        eventActionClass.Setup(
 +
            callOnAction: onAction,
 +
            callOffAction: offAction);
 +
    }
 +
}
 +
</pre>
 +
 +
==Actionサンプル3引数で渡して戻す==
 +
<pre>
 +
public class ActionScene : MonoBehaviour
 +
{
 +
    void Start()
 +
    {
 +
        System.Action<string> event = (name) =>
 +
        {
 +
            Debug.Log(name); // hogeが返ってくる
 +
        };
 +
        var sampleLogic new SampleLogic();
 +
        sampleLogic.Load(event);
 +
    }
 +
}
 +
public class SampleLogic
 +
{
 +
    public void Load(System.Action<string> event)
 +
    {
 +
        event("hoge");
 +
    }
 +
}
 
</pre>
 
</pre>

2024年11月13日 (水) 10:28時点における最新版

Actionとは

関数を変数にできるもの

Actionサンプル1

System.Action<string> OnMsg = delegate (string msg) { };
OnMsg += (msg) =>
{
    Debug.Log("msg1:" + msg);
};

// 呼び出し
OnMsg("hello");

ラムダ式だとこうかける

System.Action<string> OnMsg = (msg) =>
{
    Debug.Log("msg1:" + msg);
};

// 呼び出し
OnMsg("hello");

Actionサンプル2(別クラス呼び出し)

public class ActionScene : MonoBehaviour
{
    void Start()
    {
        var eventActionClass = new EventActionClass();
        eventActionClass.Setup(
             callOnAction: () =>
             {
                 Debug.Log("callOnAction");
             },
             callOffAction: () =>
             {
                 Debug.Log("callOffAction");
             });
    }
}
public class EventActionClass
{
    public void Setup(System.Action callOnAction, System.Action callOffAction)
    {
        callOnAction();
        callOffAction();
    }
}

Setup()の部分、ラムダ式の変数に分けると、こうかける

public class ActionScene : MonoBehaviour
{
    void Start()
    {
        System.Action onAction = () =>
        {
            Debug.Log("callOnAction");
        };
        System.Action offAction = () =>
        {
            Debug.Log("callOffAction");
        };
        var eventActionClass = new EventActionClass();
        eventActionClass.Setup(
             callOnAction: onAction,
             callOffAction: offAction);
    }
}

Actionサンプル3引数で渡して戻す

public class ActionScene : MonoBehaviour
{
    void Start()
    {
        System.Action<string> event = (name) =>
        {
            Debug.Log(name); // hogeが返ってくる
        };
        var sampleLogic new SampleLogic();
        sampleLogic.Load(event);
    }
}
public class SampleLogic
{
    public void Load(System.Action<string> event)
    {
        event("hoge");
    }
}