zoukankan      html  css  js  c++  java
  • C#事件机制复习

    事件机制
        class Person
        {
    
            public string name;
            public int age;
            public string sex;
            public float money;
            public Person()
            {
                this.name = "张三";
                this.age = 18;
                this.sex = "";
                this.money = 1000;
            }
            public Person(string name, int age, string sex,float money)
            {
                this.name = name;
                this.age = age;
                this.sex = sex;
                this.money = money;
            }
    
        }
        class Custom : Person
        {
           public delegate void BuyEventHandler(object sender);
           public event BuyEventHandler BuyEvent; 
    
           public void Buy()
           {
               if(this.money==0)
                   BuyEvent(this);
           }
        }
        class Seller:Person
        {
           
            public Seller(Custom c)
            {
                c.BuyEvent += new Custom.BuyEventHandler(this.Warning);
            }
    
            public void Warning(object sender)
            {
               
                Console.WriteLine("没钱了请充值!");
            }
        }
        
    View Code
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    // 定义事件包含数据 
    public class MyEventArgs : EventArgs
    {
        private string StrText;
        public MyEventArgs(string StrText)
        {
            this.StrText = StrText;
        }
        public string GetStrText
        {
            get
            {
                return StrText;
            }
        }
    }
    // 发布事件的类 
    class EventSource
    {
        MyEventArgs EvArgs = new MyEventArgs("触发事件");
        // 定义委托 
        public delegate void EventHandler(object sender, MyEventArgs e);
        // 定义事件 
        public event EventHandler TextOut;
        // 激活事件的方法 
        public void TriggerEvent()
        {
            if (TextOut == null)
                TextOut(this, EvArgs);
        }
    } 
    // 订阅事件的类 
    class TestApp
    {
        public static void Main()
        {
            EventSource evsrc = new EventSource();
            // 订阅事件 
            evsrc.TextOut += new EventSource.EventHandler(CatchEvent);
            // 触发事件 
            evsrc.TriggerEvent();
            Console.WriteLine("------");
            // 取消订阅事件 
            evsrc.TextOut -= new EventSource.EventHandler(CatchEvent);
            // 触发事件 
            evsrc.TriggerEvent();
            Console.WriteLine("------");  // 事件订阅已取消,什么也不执行 
            TestApp theApp = new TestApp();
            evsrc.TextOut += new EventSource.EventHandler(theApp.InstanceCatch);
            evsrc.TriggerEvent();
            Console.WriteLine("------");
        }
        // 处理事件的静态方法 
        public static void CatchEvent(object from, MyEventArgs e)
        {
            Console.WriteLine("CatchEvent:{0}", e.GetStrText);
        }
        // 处理事件的方法 
        public void InstanceCatch(object from, MyEventArgs e)
        {
            Console.WriteLine("InstanceCatch:{0},e.GetStrText");
        }
    }
  • 相关阅读:
    百度APP爬虫
    python多线程与多进程
    navicat激活
    flask简单登录注册
    U盘启动盘还原
    flask报错:werkzeug.routing.BuildError: Could not build url for endpoint 'index'. Did you mean 'single' instead?
    mysql复制表(同一数据库,不同数据库)
    pycharm修改注释颜色
    requirements文件
    itchat娱乐
  • 原文地址:https://www.cnblogs.com/anbylau2130/p/2998307.html
Copyright © 2011-2022 走看看