search
HomeBackend DevelopmentC#.Net TutorialC# Learning Diary 24----Event
C# Learning Diary 24----EventJan 21, 2017 pm 03:28 PM

Events provide classes and class instances with the ability to send notifications to the outside world, realizing communication between objects. If an event member is defined, it means that the type has 1. The ability to register methods in the event (+ = operator implementation). 2. Ability to unregister methods in events (-= operator implementation). 3. The registered method will be notified when the event is triggered (the event maintains a list of registered methods internally). Delegate is the carrier of event. To define an event, you must have a delegate. For more information about delegation, please click Delegate to learn more.

State an event:

Internal declaration of the event, first of all, you must declare the commission type of the incident. For example:

     pulic delegate void  MyDelegateHandler(object sender,EventArgs e);

Then based on the above example, declare the event and use the keyword event

                  pulic event MyDelegateHandler MyEvent;

(The object type is the base class of all classes, details about it have been mentioned before After clicking on the object type, EventArgs is the base class of the class that contains event data and is used to pass event details)

Write an event instance:

I have an unshakable habit every Saturday. I like to go to a supermarket outside the school to buy things. That supermarket has an automatic door that will automatically open when we approach a certain distance (3 meters). He will say "Welcome" very gently and kindly. Because I often go to his home to buy things and have signed up as a member, the automatic door seems to recognize me every time I approach, and he will say "Warmly welcome HC666 to our supermarket" very warmly. ^_^"This door is quite interesting.

In the above example, the "automatic door" is regarded as an object instantiated by Door, and "I" is an object instantiated by person. When I call The action of "going to the supermarket" and being 3 meters away from the supermarket door triggers the "Enterdoor" event we defined. However, Enterdoor uses a delegate to register the "Opendoor" action of an "automatic door (door)", which is quite Because the door opening method is called, communication and exchange between objects are achieved. The code is as follows:

using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Text;  
  
  
namespace Test  
{ //定义一个person类,里面包含了方法  
    class person   
    {  
        public string name = "HC666";  
        private int distance;  
        //声明委托  
        public delegate void EnterdoorHandler(object sender,EnterdoorArgs e);  
        //基于委托声明事件  
        public event EnterdoorHandler Enterdoor;  
        //定义的一个去超市的方法,当距离 distance<=3的时候触发事件  
        public void GotoStore()  
        {  
            for (int i = 6; i > 0; i--)  
            {  
                distance = i;  
                if (i <= 3)  
                {//触发事件了  
                    EnterdoorArgs e = new EnterdoorArgs(distance);  
                    OnEnterdoor(e);//调用触发事件方法  
                }  
            }  
          
        }  
        public void OnEnterdoor(EnterdoorArgs e)  
        {//调用事件里注册的方法  
            if (Enterdoor != null)  
                Enterdoor(this, e);  
            else  
                Console.WriteLine("没有添加处理方法");          
        }  
        //定义一个包含事件数据的类,这里distance是一个判断的重要数据  
       public class EnterdoorArgs:EventArgs  
       {  
           public int distance;  
           public EnterdoorArgs(int distance)  
           {  
               this.distance = distance;  
           }  
       }  
    }  
    //定义门这个类  
    class Door  
    {//定义开门的方法  
        public void Opendoor(object sender, person.EnterdoorArgs e)  
        {  
            person per = (person)sender;  //有点熟悉吧,显示类型转换中有谈到  
            if (e.distance == 3)  
            {  
                Console.WriteLine("尊敬的顾客您距离本超市 {0}米 即将开门迎接您", e.distance);  
            }  
            if(e.distance <3)  
                Console.WriteLine("热烈欢迎 {0} 光临本超市", per.name);  
              
        }  
    }  
    class program  
    {  
        static void Main(string[] args)  
        {  
            person per = new person(); //实例化对象  
            Door door = new Door();  
            //向事件中注册开门的方法  
            per.Enterdoor += door.Opendoor;  
            //我去超市  
            per.GotoStore();  
  
        }  
    }  
}

Result:

C# Learning Diary 24----Event

The above is C# The content of Learning Diary 24----Event, please pay attention to the PHP Chinese website (www.php.cn) for more related content!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
事件 ID 4660:已删除对象 [修复]事件 ID 4660:已删除对象 [修复]Jul 03, 2023 am 08:13 AM

我们的一些读者遇到了事件ID4660。他们通常不确定该怎么做,所以我们在本指南中解释。删除对象时通常会记录事件ID4660,因此我们还将探索一些实用的方法在您的计算机上修复它。什么是事件ID4660?事件ID4660与活动目录中的对象相关,将由以下任一因素触发:对象删除–每当从ActiveDirectory中删除对象时,都会记录事件ID为4660的安全事件。手动更改–当用户或管理员手动更改对象的权限时,可能会生成事件ID4660。更改权限设置、修改访问级别或添加或删除人员或组时,可能会发生这种情

在iPhone锁屏上获取即将到来的日历事件在iPhone锁屏上获取即将到来的日历事件Dec 01, 2023 pm 02:21 PM

在运行iOS16或更高版本的iPhone上,您可以直接在锁定屏幕上显示即将到来的日历事件。继续阅读以了解它是如何完成的。由于表盘复杂功能,许多AppleWatch用户习惯于能够看一眼手腕来查看下一个即将到来的日历事件。随着iOS16和锁定屏幕小部件的出现,您可以直接在iPhone上查看相同的日历事件信息,甚至无需解锁设备。日历锁定屏幕小组件有两种风格,允许您跟踪下一个即将发生的事件的时间,或使用更大的小组件来显示事件名称及其时间。若要开始添加小组件,请使用面容ID或触控ID解锁iPhone,长按

在JavaScript中,"oninput"事件的用途是什么?在JavaScript中,"oninput"事件的用途是什么?Aug 26, 2023 pm 03:17 PM

当在输入框中添加值时,就会发生oninput事件。您可以尝试运行以下代码来了解如何在JavaScript中实现oninput事件-示例<!DOCTYPEhtml><html>&nbsp;&nbsp;<body>&nbsp;&nbsp;&nbsp;<p>Writebelow:</p>&nbsp;&nbsp;&nbsp;<inputtype="text"

PHP8.0中的事件处理库:EventPHP8.0中的事件处理库:EventMay 14, 2023 pm 05:40 PM

PHP8.0中的事件处理库:Event随着互联网的不断发展,PHP作为一门流行的后台编程语言,被广泛应用于各种Web应用程序的开发中。在这个过程中,事件驱动机制成为了非常重要的一环。PHP8.0中的事件处理库Event将为我们提供一个更加高效和灵活的事件处理方式。什么是事件处理在Web应用程序的开发中,事件处理是一个非常重要的概念。事件可以是任何一种用户行

如何在PHP项目中实现日历功能和事件提醒?如何在PHP项目中实现日历功能和事件提醒?Nov 02, 2023 pm 12:48 PM

如何在PHP项目中实现日历功能和事件提醒?在开发Web应用程序时,日历功能和事件提醒是常见的需求之一。无论是个人日程管理、团队协作,还是在线活动安排,日历功能都可以提供便捷的时间管理和事务安排。在PHP项目中实现日历功能和事件提醒可以通过以下步骤来完成。数据库设计首先,需要设计数据库表来存储日历事件的相关信息。一个简单的设计可以包含以下字段:id:事件的唯一

jQuery中如何实现select元素的改变事件绑定jQuery中如何实现select元素的改变事件绑定Feb 23, 2024 pm 01:12 PM

jQuery是一个流行的JavaScript库,可以用来简化DOM操作、事件处理、动画效果等。在web开发中,经常会遇到需要对select元素进行改变事件绑定的情况。本文将介绍如何使用jQuery实现对select元素改变事件的绑定,并提供具体的代码示例。首先,我们需要使用标签来创建一个包含选项的下拉菜单:

Vue文档中的input框绑定事件详解Vue文档中的input框绑定事件详解Jun 21, 2023 am 08:12 AM

Vue.js是一种轻量级的JavaScript框架,具有易用、高效和灵活的特点,是目前广受欢迎的前端框架之一。在Vue.js中,input框绑定事件是一个十分常见的需求,本文将详细介绍Vue文档中的input框绑定事件。一、基础概念在Vue.js中,input框绑定事件指的是将输入框的值绑定到Vue实例的数据对象中,从而实现输入和响应的双向绑定。在Vue.j

jquery中常用的事件有哪些jquery中常用的事件有哪些Jan 03, 2023 pm 06:13 PM

jquery中常用的事件有:1、window事件;2、鼠标事件,是当用户在文档上面移动或单击鼠标时而产生的事件,包括鼠标单击、移入事件、移出事件等;3、键盘事件,是用户每次按下或者释放键盘上的按键时都会产生事件,包括按下按键事件、释放按键按键等;4、表单事件,例如当元素获得焦点时会触发focus()事件,失去焦点时会触发blur()事件,表单提交时会触发submit()事件。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.