• Action<T> 泛型委托


    1.Action<T> 泛型委托

    这个委托很好用, 不用独立的定义声明一个委托了.  

    下面的委托代码程序还是在.net 1.x时学会的呢, 当时觉得别扭些, 但最后习惯也就习惯了, 最后还保存成模板拷贝来拷贝去的.

            public delegate void DelegateMessage(string username, decimal score); 
            static void Main(string[] args)
            {
                DelegateMessage messageTarget = ShowWindowsMessage;
                messageTarget("lzd", 100);

                Console.ReadKey();
            }

            private static void ShowWindowsMessage(string username, decimal score)
            {
                Console.WriteLine(username + score);
            }

    重构原有的代码, 如下:

    例如:

            static void Main(string[] args)
            {
                Action<string, decimal> messageTarget = ShowWindowsMessage;
                messageTarget("lzd", 100);

                Console.ReadKey();
            }

            private static void ShowWindowsMessage(string username, decimal score)
            {
                Console.WriteLine(username + score);
            }

  • 相关阅读:
    Exchanger
    信号量Semaphore
    CountDownLatch
    Condition
    WCF接口实例介绍
    时间显示
    pymysql-execute
    python之迭代器与生成器
    python之装饰器
    python之函数
  • 原文地址:https://www.cnblogs.com/liuzhendong/p/2266569.html
Copyright © 2020-2023  润新知