匿名委託可以訪問局部變數,而原始的委託則必須利用別的方法才可以做到

來源:互聯網
上載者:User

 public class Class1
    {
        public void AddSendTextEventHandler(SendTextEventHandler st)
        {
            SendTextEvent += st;
        }
        public event SendTextEventHandler SendTextEvent;

        public void doall()
        {
            SendTextEvent("1");
            //為了讓效果看的明顯,故方法休眠1秒鐘
            System.Threading.Thread.Sleep(1000);
            do1();
            SendTextEvent("2");
            System.Threading.Thread.Sleep(1000);
            do2();
            SendTextEvent("3");
            System.Threading.Thread.Sleep(1000);
            do3();
            SendTextEvent("4");
            System.Threading.Thread.Sleep(1000);
            do4();
        }

        void do1()
        { }

        void do2()
        { }

        void do3()
        { }

        void do4()
        { }
    }

    public delegate void SendTextEventHandler(string text);

 

 

  public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            LoadData();        
        }

        void LoadData()
        {
            Class1 c = new Class1();
            //Form2為一個普通表單類,為局部變數,主要是為了用其Text屬性顯示SendTextEvent傳過來的text
            Form2 f = new Form2();
            f.Show();
            //方法1,通過原始的方法註冊委派物件(事件)
            c.SendTextEvent += new SendTextEventHandler(c_SendTextEvent);
            //方法2,利用匿名委託
            c.SendTextEvent += delegate(string text)
            {
                //注意,f為局部變數,可以在這裡操作
                f.Text = text;           
            };
            c.doall();
        }

        //方法2的原始委託註冊方式
        void c_SendTextEvent(string text)
        {
            //注意,如果是這種原始方式,Form2的對象f要通過別的方式如建立全域變數來處理器Text屬性
        }
    }

 

 

 public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }
    }

 

 

  static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.