用《斗破苍穹》的视角打开C#委托2 委托链 / 泛型委托 / GetInvocationList

委托链

  • 经过不懈地努力,我终于成为了斗师,并成功掌握了两种斗技------八极崩和焰分噬浪尺。
  • 于是,我琢磨着,能不能搞一套连招,直接把对方带走。
csharp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace FrameworkDemo
{
    class Program
    {
        delegate void 攻击委托类型(string a);

        static void 八极崩(string a) {
            Console.WriteLine("八极崩");
        }
        static void 焰分噬浪尺(string a)
        {
            Console.WriteLine("焰分噬浪尺");
        }
        static void Main(string[] args)
        {
            // 创建委托链
            攻击委托类型 一套连招 = new 攻击委托类型(八极崩);
            // 攻击委托类型 一套连招 = 八极崩;   // 也可以这样写
            一套连招 += 焰分噬浪尺;
            // 启动委托
            一套连招("吃我一记连招");
            Console.ReadLine();
        }
    }
}

委托链返回值(GetInvocationList)

  • 这连招确实是打出来了,但是我怎么知道我打出了多少伤害呢?所以我要想办法接受这套输出的反馈。
csharp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace FrameworkDemo
{
    class Program
    {
        delegate int 攻击委托类型(string a);

        static int 八极崩(string a) {
            Console.WriteLine("八极崩");
            return 330;
        }
        static int 焰分噬浪尺(string a)
        {
            Console.WriteLine("焰分噬浪尺");
            return 660;
        }
        static void Main(string[] args)
        {
            // 创建委托
            攻击委托类型 一套连招 = 八极崩;
            一套连招 += 焰分噬浪尺;
            // 获取委托链
            Delegate[] delList = 一套连招.GetInvocationList();
            // 遍历委托链
            for (int i = 0; i < delList.Length; i++) {
                攻击委托类型 del = (攻击委托类型)delList[i];
                // 一次调用委托并获取返回值
                int result = del("吃我一套连招");
                Console.WriteLine($"攻击伤害:{result}");
            }
            Console.ReadLine();
        }
    }
}

泛型委托

  • 这时候,问题就来了,我每创建一个委托,岂不是都要先定义一个委托类型,然后再创建一个委托实例,假设这个委托类型只用一次,那我岂不是要在我的类里面定义一大堆的委托?
  • 于是乎,就出现了一系列的泛型委托。
  • Action是不带有返回值的泛型,而Func具有返回值。
csharp 复制代码
using System;

namespace FrameworkDemo
{
    class Program
    {
        static void 八极崩() {
            Console.WriteLine("八极崩");
        }
        static void 焰分噬浪尺(string a)
        {
            Console.WriteLine("焰分噬浪尺");
        }
        static string 佛怒火莲(string a) {
            Console.WriteLine("佛怒火莲");
            return "成功击杀敌军!";
        }

        static void Main(string[] args)
        {
            // 不带返回值的委托
            Action 攻击委托1 = 八极崩;
            攻击委托1();
            Action<string> 攻击委托2 = 焰分噬浪尺;
            攻击委托2("吃我一击!");
            // 带返回值的委托
            // <>中的最后一个参数是函数的返回值类型
            Func<string, string> 攻击委托3 = 佛怒火莲;
            string result = 攻击委托3("绝杀");
            Console.ReadLine();
        }
    }
}
相关推荐
懒大王爱吃狼25 分钟前
Python教程:python枚举类定义和使用
开发语言·前端·javascript·python·python基础·python编程·python书籍
秃头佛爷1 小时前
Python学习大纲总结及注意事项
开发语言·python·学习
待磨的钝刨1 小时前
【格式化查看JSON文件】coco的json文件内容都在一行如何按照json格式查看
开发语言·javascript·json
△曉風殘月〆3 小时前
WPF MVVM入门系列教程(二、依赖属性)
c#·wpf·mvvm
XiaoLeisj3 小时前
【JavaEE初阶 — 多线程】单例模式 & 指令重排序问题
java·开发语言·java-ee
励志成为嵌入式工程师4 小时前
c语言简单编程练习9
c语言·开发语言·算法·vim
逐·風4 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
捕鲸叉5 小时前
创建线程时传递参数给线程
开发语言·c++·算法
A charmer5 小时前
【C++】vector 类深度解析:探索动态数组的奥秘
开发语言·c++·算法
Peter_chq5 小时前
【操作系统】基于环形队列的生产消费模型
linux·c语言·开发语言·c++·后端