文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2023-06-29 11:35

关注

小编给大家分享一下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()方法。

定义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; }    }}

利用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}");            });        }    }}

在Main()方法中调用

ActionTest.Test();

结果

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

以上是“C#内置泛型委托中Action委托是什么”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯