• C# 线程 传递参数


    方法1:使用ParameterizedThreadStart委托
    如果使用了ParameterizedThreadStart委托,线程能传递且只能传递一个object类型的参数,且返回类型为void.

    static void Main(string[] args)
    {
        string hello = "hello world";
        Thread thread = new Thread(new ParameterizedThreadStart(ThreadMainWithParameters));
        //Thread thread = new Thread(ThreadMainWithParameters); // 上面的简写
        thread.Start(hello);
        Console.Read();
    }
    
    static void ThreadMainWithParameters(object obj)
    {
        string str = obj as string;
        if (!string.IsNullOrEmpty(str))
            Console.WriteLine("Running in a thread,received: {0}", str);
    }
    

    方法2:创建自定义类
    定义一个类,在其中定义需要的字段,将线程的方法定义为类的一个实例方法.
    这种方法稍有繁琐,如果又需要,可以使用

    static void Main(string[] args)
    {
        CustomClass customClass = new CustomClass("hello world");
        Thread thread = new Thread(customClass.RunMethod);
        thread.Start();
        Console.Read();
    }
    
    public class CustomClass
    {
        private string data;
        public CustomClass(string data)
        {
            this.data = data;
        }
        public void RunMethod()
        {
            Console.WriteLine("Type2: Running in a thread,data: {0}", data);
        }
    }
    

    方法3:使用lambda表达式
    对于lambda表达式可以查看微软MSDN上的说明文档。
    在多数使用委托的时候,我们一般也可以用lambda表达式,此方法简便推荐使用。

    static void Main(string[] args)
    {
        string hello = "hello world";
        //Thread thread = new Thread(ThreadMainWithParameters(hello)) // 该形式编译报错
        Thread thread = new Thread(() => ThreadMainWithParameters(hello));
        thread.Start();
        Console.Read();
    }
    
    static void ThreadMainWithParameters(object obj)
    {
        string str = obj as string;
        if (!string.IsNullOrEmpty(str))
            Console.WriteLine("Type3: Running in a thread,received: {0}", str);
    }
    

    方法4:使用delegate委托

    static void Main(string[] args)
    {
        string hello = "hello world";
        Thread thread = new Thread(delegate() { ThreadMainWithParameters(hello); });
        thread.Start();
        Console.Read();
    }
    
    static void ThreadMainWithParameters(object obj)
    {
        string str = obj as string;
        if (!string.IsNullOrEmpty(str))
            Console.WriteLine("Type4: Running in a thread,received: {0}", str);
    
    }
    
  • 相关阅读:
    html提交表单到Servlet
    Kubernetes(k8s)概念学习、集群安装
    Kubernetes(k8s)入门学习
    Spring Boot整合Scheduled定时任务器、整合Quartz定时任务框架
    Maven项目Run As无Run On Server的解决方法
    SpringBoot异常处理五种方式、Junit单元测试、热部署
    SpringBoot整合整合jsp、整合freemarker、整合Thymeleaf
    SpringBoot整合Servlet、Filter、Listener、访问静态资源、文件上传
    Vue前端路由
    Vue前端交互
  • 原文地址:https://www.cnblogs.com/lqqgis/p/12643786.html
Copyright © 2020-2023  润新知