.NET Framework中自带的泛型委托Action

Action<>是.NET Framework中自带的泛型委托,可以接收一个或多个输入参数,但不返回任何参数,可传递至多16种不同类型的参数类型。在Linq的一些方法上使用的比较多。

1、Action泛型委托

.NET Framework为我们提供了多达16个参数的Action委托定义,对于常见的开发场景已经完全够用。

如下图,

示例说明:

Action<>:委托至少0个参数,至多16个参数,无返回值。

Action:表示无参,无返回值的委托。

Action :表示有传入参数int,string无返回值的委托。

Action:表示有传入参数int,string,bool无返回值的委托。

Action:表示有传入4个int型参数,无返回值的委托。

2、Action泛型委托的使用

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(11);
            Console.WriteLine("----------------------------");
            // 使用delegate
            Action<int> action5 = delegate (int i) { Console.WriteLine($"使用delegate的委托,参数值是:{i}"); };
            action5(22);
            Console.WriteLine("----------------------------");
            // 使用匿名委托
            Action<string> action6 = (string s) => { Console.WriteLine($"使用匿名委托,参数值是:{s}"); };
            action6("C#");
            Console.WriteLine("----------------------------");
            // 多个参数无返回值的委托
            Action<int,string> action7 = new Action<int,string>(ActionWithMulitPara);
            action7(33, "Java");
            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(44, 55, "Python");
            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(66,77, "C","CJavaPy");
            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}");
        }
    }
}
相关推荐
我是唐青枫10 小时前
C#.NET 索引器完全解析:语法、场景与最佳实践
c#·.net
追逐时光者11 小时前
一款基于 .NET 9 构建的企业级 Web RBAC 快速开发框架
.net
FuckPatience15 小时前
C# 使用内存映射文件实现进程间通信
c#
幌才_loong16 小时前
深入解析 C# async/await 执行原理:从语法糖到状态机
后端·.net
kylezhao201917 小时前
如何在 C# 项目中使用 NLog 进行日志记录
开发语言·c#
Caco.D18 小时前
Aneiang.Pa 代理池(Proxy Pool)功能与 ASP.NET Core Web API 集成实战
爬虫·asp.net·.net·aneiang.pa
小菱形_18 小时前
【C#】IEnumerable
开发语言·c#
爱敲点代码的小哥18 小时前
Directoy文件夹操作对象 、StreamReader和StreamWriter 和BufferedStream
开发语言·c#
CodeCraft Studio19 小时前
Excel处理控件Aspose.Cells教程:使用C#在Excel中创建折线图
java·c#·excel·aspose.cells·excel图表·excel api库·excel折线图
m5655bj20 小时前
C# 在 PDF 文档中添加电子签名
开发语言·pdf·c#