中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#內置泛型委托中Action委托是什么

發布時間:2022-03-14 09:10:50 來源:億速云 閱讀:217 作者:小新 欄目:開發技術

小編給大家分享一下C#內置泛型委托中Action委托是什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1、什么是Action泛型委托

Action<T>是.NET Framework內置的泛型委托,可以使用Action<T>委托以參數形式傳遞方法,而不用顯示聲明自定義的委托。封裝的方法必須與此委托定義的方法簽名相對應。也就是說,封裝的方法必須具有一個通過值傳遞給它的參數,并且不能有返回值。

2、Action委托定義

查看Action的定義:

using System.Runtime.CompilerServices;

namespace System
{
    //
    // 摘要:
    //     封裝一個方法,該方法不具有參數且不返回值。
    [TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
    public delegate void Action();
}

你會發現,Action其實就是沒有返回值的delegate。

3、示例

Action委托至少0個參數,至多16個參數,無返回值。

Action 表示無參,無返回值的委托。

Action<int,string> 表示有傳入參數int,string無返回值的委托。

Action<int,string,bool> 表示有傳入參數int,string,bool無返回值的委托。

Action<int,int,int,int> 表示有傳入4個int型參數,無返回值的委托。

C#內置泛型委托中Action委托是什么

代碼示例如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ActionDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            // 無參數無返回值的委托
            Action action1 = new Action(ActionWithNoParaNoReturn);
            action1();
            Console.WriteLine("----------------------------");
            // 使用delegate
            Action action2 = delegate { Console.WriteLine("這里是使用delegate"); };
            // 執行
            action2();
            Console.WriteLine("----------------------------");
            // 使用匿名委托
            Action action3 = () => { Console.WriteLine("這里是匿名委托"); };
            action3();
            Console.WriteLine("----------------------------");
            // 有參數無返回值的委托
            Action<int> action4 = new Action<int>(ActionWithPara);
            action4(23);
            Console.WriteLine("----------------------------");
            // 使用delegate
            Action<int> action5 = delegate (int i) { Console.WriteLine($"這里是使用delegate的委托,參數值是:{i}"); };
            action5(45);
            Console.WriteLine("----------------------------");
            // 使用匿名委托
            Action<string> action6 = (string s) => { Console.WriteLine($"這里是使用匿名委托,參數值是:{s}"); };
            action6("345");
            Console.WriteLine("----------------------------");
            // 多個參數無返回值的委托
            Action<int, string> action7 = new Action<int, string>(ActionWithMulitPara);
            action7(7, "abc");
            Console.WriteLine("----------------------------");
            // 使用delegate
            Action<int, int, string> action8 = delegate (int i1, int i2, string s) 
            {
                Console.WriteLine($"這里是三個參數的Action委托,參數1的值是:{i1},參數2的值是:{i2},參數3的值是:{s}");
            };
            action8(12, 34, "abc");
            Console.WriteLine("----------------------------");
            Action<int,int,string, string> action9 = (int i1,int i2, string s1,string s2) => 
            {
                Console.WriteLine($"這里是使用四個參數的委托,參數1的值是:{i1},參數2的值是:{i2},參數3的值是:{s1},參數4的值是:{s2}");
            };
            // 執行委托
            action9(34,56, "abc","def");
            Console.ReadKey();
        }




        static void ActionWithNoParaNoReturn()
        {
            Console.WriteLine("這是無參數無返回值的Action委托");
        }

        static void ActionWithPara(int i)
        {
            Console.WriteLine($"這里是有參數無返回值的委托,參數值是:{i}");
        }

        static void ActionWithMulitPara(int i,string s)
        {
            Console.WriteLine($"這里是有兩個參數無返回值的委托,參數1的值是:{i},參數2的值是:{s}");
        }
    }
}

運行結果:

C#內置泛型委托中Action委托是什么

4、真實示例

先看下面一張截圖:

C#內置泛型委托中Action委托是什么

從截圖中可以看出:ForEach()方法的參數是一個參數類型是T的無返回值的Action委托,下面的示例中利用Action委托作為參數傳遞給ForEach()方法。

1、定義Student實體類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ActionDemo
{
    public class Student
    {
        public int Id { get; set; }

        public string Name { get; set; }

        public int Age { get; set; }

        public int Sex { get; set; }
    }
}

2、利用ForEach()方法輸出集合內容

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ActionDemo
{
    public class ActionTest
    {
        public static void Test()
        {
            List<Student> list = new List<Student>()
            {
              new Student(){Id=1,Name="張三",Age=19,Sex=1},
              new Student(){Id=2,Name="李四",Age=20,Sex=2},
              new Student(){Id=3,Name="王五",Age=23,Sex=1},
              new Student(){Id=4,Name="趙六",Age=18,Sex=1}
            };

            // Action<Student>委托作為參數傳遞給ForEach()方法
            list.ForEach(student =>
            {
                Console.WriteLine($"姓名:{student.Name},年齡:{student.Age}");
            });
        }
    }
}

3、在Main()方法中調用

ActionTest.Test();

4、結果

C#內置泛型委托中Action委托是什么

以上是“C#內置泛型委托中Action委托是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

家居| 顺义区| 于都县| 自治县| 隆安县| 炉霍县| 平塘县| 林周县| 宝鸡市| 汝城县| 富锦市| 微博| 罗定市| 石首市| 馆陶县| 白水县| 嘉定区| 江安县| 宁武县| 井冈山市| 阳原县| 崇义县| 自贡市| 丰镇市| 同江市| 徐州市| 济宁市| 康马县| 梁平县| 宾阳县| 越西县| 三原县| 区。| 美姑县| 惠水县| 稻城县| 呈贡县| 驻马店市| 中牟县| 云和县| 同仁县|