您好,登錄后才能下訂單哦!
這篇文章主要介紹“c#中Delegate,Action,Func和Predicate怎么使用”,在日常操作中,相信很多人在c#中Delegate,Action,Func和Predicate怎么使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”c#中Delegate,Action,Func和Predicate怎么使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
1.Delegate,Action(常用)
#region 模塊信息 // ********************************************************************** // Copyright (C) 2018 Blazors // Please contact me if you have any questions // File Name: GameDefine // Author: romantic123fly // We // ********************************************************************** #endregion using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using UnityEngine.UI; public delegate void MyDelegate(string name);//定義委托 public delegate void Action(); public delegate void Action<T>(T obj); public delegate void Action<T1, T2>(T1 arg1, T2 arg2); public class ActionTest : MonoBehaviour { public MyDelegate myDelegate; //使用委托 Action action; Action<string> action1; Action<string, int> action2; Action<string[]> action3; void Start() { myDelegate += DelegateFun; myDelegate("myDelegate"); action += test1;//無參數 action(); action1 += test2;//一個參數 action1("Test2"); action2 += test3;//兩個參數 action2("Test3", 99); action3 += test4;//集合參數 action3(new string[] { "charlies", "nancy", "alex", "jimmy", "selina" }); } private void DelegateFun(string name) { Debug.Log(name); } void test1() { Debug.Log("test1"); } void test2(string str) { Debug.Log(str); } void test3(string str,int num) { Debug.Log(string.Format("{0} {1}", str, num)); } void test4(string[] x) { var result = from o in x where o.Contains("s")select o; foreach (string s in result.ToList()) { Debug.Log(s); } } }
Func可以傳入多個參數,默認最后一個為返回值 Predicate只能接受一個傳入參數,返回值為bool類型
#region 模塊信息 // ********************************************************************** // Copyright (C) 2018 Blazors // Please contact me if you have any questions // File Name: GameDefine // Author: romantic123fly // WeChat // ********************************************************************** #endregion using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; //有返回值的委托 public delegate TResult Func<TResult>(); public delegate TResult Func<T, TResult>(T arg); public delegate TResult Func<T1, T2, TResult>(T1 arg1, T2 arg2); public class FuncTest : MonoBehaviour { Func<int> func; Func<string, int> func1; Predicate<string[]> predicate; void Start() { func = XXX; Debug.Log(func()); func1 = CallStringLength; Debug.Log(func1("sadasdads")); ///bool Predicate<T>的用法 ///輸入一個T類型的參數,返回值為bool類型 predicate = func2; string[] _value = { "charlies", "nancy", "alex", "jimmy", "selina" }; Debug.Log(predicate(_value)); } private bool func2(string[] obj) { var result = from p in obj where p.Contains("s") select p; if (result.ToList().Count > 0) { return true; } else { return false; } } int XXX() { return 10; } int CallStringLength(string str) { return str.Length; } }
到此,關于“c#中Delegate,Action,Func和Predicate怎么使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。