您好,登錄后才能下訂單哦!
Action、Func與Predicate如何在C#項目中使用?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
Func 和 Action 是什么,如何使用?
兩者最基本的區別是,前者適合那些需要帶返回值的委托,后者適合那些不帶返回值的委托。
Func 所引用的方法接收一個或者多個入參并帶有一個返回值,Action所引用的方法接收一個或者多個參數并且沒有返回值,換句話說,你的委托所引用的方法沒有返回值,這時候適合用 Action。
Predicate所引用的方法接收一個或者多個泛型參數并且返回一個 bool 值,你可以假定它等價于 Func<T,bool>,Predicate 常用于對 collection 進行一組條件檢索。
C# 中使用 Action
你可以使用 委托 去實現事件和回調方法,C#委托非常類似于C++中的函數指針,但是 C# 中的 委托 是類型安全的,你可以將方法作為參數傳遞給委托從而讓委托指向該方法。
下面的代碼片段展示了 Action 委托的語法結構。
Action<TParameter>
接下來的代碼清單展示了如何使用 Action 委托,當下面的代碼執行結束后會在控制臺打印 Hello !!!。
static void Main(string[] args) { Action<string> action = new Action<string>(Display); action("Hello!!!"); Console.Read(); } static void Display(string message) { Console.WriteLine(message); }
C# 中使用 Func
現在我們一起學習下 Func 委托,下面是 Func 的語法結構。
Func<TParameter, TOutput>
接下來的代碼片段展示了如何在 C# 中使用 Func 委托,最終方法會打印出 Hra(基本薪資的 40%) 的值,基本薪資是作為參數傳下去的,如下代碼所示:
static void Main(string[] args) { Func<int, double> func = new Func<int, double>(CalculateHra); Console.WriteLine(func(50000)); Console.Read(); } static double CalculateHra(int basic) { return (double)(basic * .4); }
值得注意的是,Func 委托的第二個參數表示方法的返回值,在上面這個例子中,它就是計算后的 Hra 值,作為 double 型返回。
C# 中使用 Predicate
Predicate 委托常用于檢索 collection,下面是 Predicate 的語法結構。
Predicate<T>
值得注意的是, Predicate<T> 差不多等價于 Func<T,bool>。
考慮下面的 Customer 實體類。
class Customer { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Address { get; set; } public string City { get; set; } public string State { get; set; } public string Country { get; set; } }
接下來生成一個 customer 集合并且丟一些數據進去,如下代碼:
List<Customer> custList = new List<Customer>(); custList.Add(new Customer { Id = 1, FirstName = "Joydip", LastName = "Kanjilal", State = "Telengana", City = "Hyderabad", Address = "Begumpet", Country = "India" }); custList.Add(new Customer { Id = 2, FirstName = "Steve", LastName = "Jones", State = "OA", City = "New York", Address = "Lake Avenue", Country = "US" });
接下來是完整的代碼片段展示了如何使用 Predicate 去檢索集合。
static void Main(string[] args) { List<Customer> custList = new List<Customer>(); custList.Add(new Customer { Id = 1, FirstName = "Joydip", LastName = "Kanjilal", State = "Telengana", City = "Hyderabad", Address = "Begumpet", Country = "India" }); custList.Add(new Customer { Id = 2, FirstName = "Steve", LastName = "Jones", State = "OA", City = "New York", Address = "Lake Avenue", Country = "US" }); Predicate<Customer> hydCustomers = x => x.Id == 1; Customer customer = custList.Find(hydCustomers); Console.WriteLine(customer.FirstName); Console.Read(); }
看完上述內容,你們掌握Action、Func與Predicate如何在C#項目中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。