zoukankan      html  css  js  c++  java
  • C#跨线程访问(二)----thread参数、回调传参数

    一、单个参数(封箱也可实现多参数)

    class B
      { 
         public static void Main() 
         {  
            Thread t = new Thread(new ParameterizedThreadStart(Test)); 
            t.Start("a"); 
     
            Console.Read(); 
          } 
     
          private static void Test(object obj) 
          { 
            Console.WriteLine("带一个参数 {0}!",obj.ToString ());  
          } 
       } 
    二、多个参数

     class Test2
      { 
         public static void Main() 
         { 
            MyParam m new MyParam(); 
            m.x = 6; 
            m.y = 9; 
     
            Thread t new Thread(new ThreadStart(m.Test)); 
            t.Start(); 
     
            Console.Read(); 
          } 
      } 
      
      class MyParam  
      { 
         public int x, y; 
     
         public void Test() 
         { 
             Console.WriteLine("x={0},y={1}"this.x, this.y); 
         } 
       } 

    三、回调函数传参

    class C
      { 
         public static void Main() 
         { 
            MyParam m new MyParam(); 
            m.x = 6; 
            m.y = 9; 
            m.callBack = ThreadCallBack;
     
            Thread t new Thread(new ThreadStart(m.Test)); 
            t.Start(); 
     
            Console.Read(); 
         } 
      } 
    
      private void ThreadCallBack(string msg)
      {
         Console.WriteLine("CallBack:" + msg);  
      }
     
      private delegate void ThreadCallBackDelegate(string msg);
    
      class MyParam  
      { 
         public int x, y; 
         public ThreadCallBackDelegate callBack;
     
         public void Test() 
         { 
            callBack("x=6,y=9"); 
         } 
       } 
  • 相关阅读:
    文件操作工具类
    批量插入数据到 MySQL的几种方式
    C#队列学习笔记:RabbitMQ使用多线程提高消费吞吐率
    C#队列学习笔记:RabbitMQ延迟队列
    C#队列学习笔记:RabbitMQ优先级队列
    C#队列学习笔记:RabbitMQ实现客户端相互通讯
    C#队列学习笔记:RabbitMQ搭建集群
    C#队列学习笔记:RabbitMQ安装及使用
    C#队列学习笔记:RabbitMQ基础知识
    C#队列学习笔记:MSMQ入门二
  • 原文地址:https://www.cnblogs.com/xietianjiao/p/11929059.html
Copyright © 2011-2022 走看看