C#中工作線程處理完數據后將處理結果返回給UI主線程通知主線程操作界面


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading; //線程類:暫停函數

namespace Program
{
    class Program
    {
        static void Main(string[] args)
        {
            //方法1:
            //Action<Student> callback = ((Student st) => { Console.WriteLine(st.Name); });//lambda 表達式

            //方法3:
            Action<Student> callback = ShowName;

            Thread th = new Thread(Fun);
            th.IsBackground = true;
            th.Start(callback);
            Console.ReadKey();
        }

        private static void Fun(object obj)
        {
            for (int i = 1; i <= 10; i++)
            {
                Console.WriteLine("子線程循環操作第 {0} 次", i);
                Thread.Sleep(500);
            }

            Action<Student> callback = obj as Action<Student>;

            Student st = new Student();
            st.ID = 1;
            st.Name = "Long";
            st.Age = 20;

            callback(st);
        }

        //方法2:上面的Lambda表達式也可以回城匿名函數
        private static Action<Student> callback = delegate(Student st) { Console.WriteLine(st.Name); };

        //方法3:
        private static void ShowName(Student st)
        {
            Console.WriteLine(st.Name); 
        }

    }
}

 其中,Student類的定義如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Program
{
    public class Student
    {
        public int ID;
        public string Name;
        public int Age;
    }
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM