C# 类(14) 事件
生活随笔
收集整理的這篇文章主要介紹了
C# 类(14) 事件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace ConsoleApplication1
{//先在外面定義一個類.class MyClass{//委托是事件的前提,所以先定義一個委托public delegate void Mydelagate(int i);// 接著定義事件. public event Mydelagate MyEvent; // event關鍵字是定義事件. 事件必須用委托// 讓事件在給某個屬性賦值的時候觸發int FHello;public int Hello{get { return FHello; }set{if (value != FHello){FHello = value;MyEvent(FHello);}}}//到這里事件就定義完了.但是還缺少讓事件關聯的方法.
}class Program{// 這里我們定義一個和事件關聯的方法.public static void ShowMessage(int i) //
{if (i == 10){ Console.WriteLine("十全十美"); }else{ Console.WriteLine("也許沒有十全十美的事"); }}//然后開始實例上面MyClass這個類static void Main(string[] args){MyClass My = new MyClass();My.MyEvent += new MyClass.Mydelagate(ShowMessage); //給事件關聯方法.事件只能出現在+= 或者 -=的左邊.//然后我們來試試這個事件, 給Hello屬性賦值看看
My.Hello = 10; // 輸出十全十美My.Hello = 9; // 輸入也許沒有十全十美的事.
}}
}
轉載于:https://www.cnblogs.com/mdnx/archive/2012/10/07/2714372.html
總結
以上是生活随笔為你收集整理的C# 类(14) 事件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 题目四 艺术品
- 下一篇: The slave I/O thread