C#委托、类和事件的验证【C#】
生活随笔
收集整理的這篇文章主要介紹了
C#委托、类和事件的验证【C#】
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
C#委托、類和事件的驗證
題目描述
程序由兩部分組成,如下代碼所示。第一部分定義了委托、類和事件。第二部分進行驗證。?
using System; namespace HelloWorldApplication { public delegate void DelegateRing();public class Bell{ public event DelegateRing Ring;public void OnRing(){ Ring(); } } / 請?zhí)顚懘a / class HelloWorld { static void Main(string[] args) { try{ Teacher teacher = new Teacher(); teacher.Register(new Bell()); Student student = new Student(); student.Register(new Bell()); Console.ReadKey(); } catch(Exception ex) { Console.WriteLine(ex.Message); } } } }輸入
無輸入輸出
驗證事件輸出樣例輸入
copy
無樣例輸出
teacher student提示
只需要輸出樣例輸出的結(jié)果
只需要提交需要填寫的代碼
?
總結(jié)
以上是生活随笔為你收集整理的C#委托、类和事件的验证【C#】的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【manacher】Strings in
- 下一篇: C++11新特性之泛型编程与模板