.net 委托 事件

.net 委托 事件_第1张图片

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

namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {
            A a = new A(); // 定义首领A 
            B b = new B(a); // 定义部下B 
            C c = new C(a); // 定义部下C

            // 首领A左手举杯
            a.Raise("左"); 
            // 首领A右手举杯
             a.Raise("右"); 
            // 首领A摔杯
             a.Fall();

            Console.ReadLine();
        }
    }

    /// 
    /// 首领A举杯委托
    /// 
    /// 手:左、右
    public delegate void RaiseEventHandler(string hand);
    /// 
    /// 首领A摔杯委托
    /// 
    public delegate void FallEventHandler();
    /// 
    /// 首领A
    /// 
    public class A
    {
        /// 
        /// 首领A举杯事件
        /// 
        public event RaiseEventHandler RaiseEvent;
        /// 
        /// 首领A摔杯事件
        /// 
        public event FallEventHandler FallEvent;

        /// 
        /// 举杯
        /// 
        /// 手:左、右
        public void Raise(string hand)
        {
            Console.WriteLine("首领A{0}手举杯", hand);
            // 调用举杯事件,传入左或右手作为参数
            if (RaiseEvent != null)
            {
                RaiseEvent(hand);
            }
        }
        /// 
        /// 摔杯
        /// 
        public void Fall()
        {
            Console.WriteLine("首领A摔杯");
            // 调用摔杯事件
            if (FallEvent != null)
            {
                FallEvent();
            }
        }
    }
    /// 
    /// 部下B
    /// 
    public class B
    {
        A a;

        public B(A a)
        {
            this.a = a;
            a.RaiseEvent += new RaiseEventHandler(a_RaiseEvent); // 订阅举杯事件
            a.FallEvent += new FallEventHandler(a_FallEvent); // 订阅摔杯事件
        }
        /// 
        /// 首领举杯时的动作
        /// 
        /// 若首领A左手举杯,则B攻击
        void a_RaiseEvent(string hand)
        {
            if (hand.Equals("左"))
            {
                Attack();
            }
        }

        /// 
        /// 首领摔杯时的动作
        /// 
        void a_FallEvent()
        {
            Attack();
        }

        /// 
        /// 攻击
        /// 
        public void Attack()
        {
            Console.WriteLine("部下B发起攻击,大喊:猛人张飞来也!");
        }
    }
    /// 
    /// 部下C
    /// 
    public class C
    {
        A a;
        public C(A a)
        {
            this.a = a;
            a.RaiseEvent += new RaiseEventHandler(a_RaiseEvent); // 订阅举杯事件
            a.FallEvent += new FallEventHandler(a_FallEvent); // 订阅摔杯事件
        }
        /// 
        /// 首领举杯时的动作
        /// 
        /// 若首领A右手举杯,则攻击
        void a_RaiseEvent(string hand)
        {
            if (hand.Equals("右"))
            {
                Attack();
            }
        }

        /// 
        /// 首领摔杯时的动作
        /// 
        void a_FallEvent()
        {
            Attack();
        }
        /// 
        /// 攻击
        /// 
        public void Attack()
        {
            Console.WriteLine("部下C发起攻击,一套落英神掌打得虎虎生威~");
        }
    }
}

 

你可能感兴趣的:(.net)