我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C#多线程Thread使用示例详解

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C#多线程Thread使用示例详解

本文实例为大家分享了C#多线程Thread使用的示例代码,供大家参考,具体内容如下

多线程:

线程生命周期状态图:

C#线程优先级(概率高低):

基本使用示例:


using System;
using System.Threading;
 
namespace month_9_10._1009
{
    class Run5
    {
        
        public static void showHello()
        {
            for(int i = 0; i < 100; i++)
            {
                Console.WriteLine($"Hello\t#{Thread.CurrentThread.Name}");
            }
        }
        public static void Main(string[] args)
        {
            Thread.CurrentThread.Name = "Main Thread!";
            var childThreadRef = new ThreadStart(showHello);
            Console.WriteLine("This is Main process!!!");
            var childThread = new Thread(childThreadRef);
            childThread.Name = "Child Thread!";
            childThread.Start();
            for (int i = 0; i < 100; i++)
            {
                Console.WriteLine($"World!\t#{Thread.CurrentThread.Name}");
            }
        }
    }
}

实例1:窗体标签循环滚动


using System;
using System.Drawing;
using System.Threading;
using System.Windows.Forms;
 
namespace RollMove
{
    public partial class Form1 : Form
    {
        Thread th1 = null;
        public Form1()
        {
            InitializeComponent();
            
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            int _sx = 40;
            int _ex = 280;
            int _top = 70;
            th1 = new Thread(() => {
                while (true)
                {
                    if (_sx <= _ex)
                    {
                        _ex = 280;
                        label1.Location = new Point(_sx, _top);
                        Thread.Sleep(20);
                        _sx += 5;
                    }
                    else
                    {
                        _ex = 40;
                        label1.Location = new Point(_sx, _top);
                        Thread.Sleep(20);
                        _sx -= 5;
                    }
                }
            });
            th1.Start();
        }
 
        private void Form1_FormClosed(object sender, FormClosedEventArgs e)
        {
            if (th1!=null)
            {
                th1.Abort();
            }
        }
    }
}

实例2:进度条


using System;
using System.Threading;
using System.Windows.Forms;
 
namespace month_9_10._1012
{
    public partial class Form_3 : Form
    {
        public static Print.Print print = Console.WriteLine;
        Thread th1, th2;
        public Form_3()
        {
            InitializeComponent();
            Text = "Welcome!";
            CheckForIllegalCrossThreadCalls = false;
            th1 = new Thread(new ThreadStart(Pro1));
            th1.Priority = ThreadPriority.Lowest;
            th1.Start();
            th2 = new Thread(new ThreadStart(Pro2));
            th2.Priority = ThreadPriority.Highest;
            //th2.Start();
            print(th1.Priority);
            print(th2.Priority);
            
        }
 
        void Pro1()
        {
            print("XXXXXXX");
            for (int i = 0; i <= 100; i++)
            {
                
                progressBar1.Value = i;
                label1.Text = $"{progressBar1.Value}%";
                Thread.Sleep(200);
                if (i == 20)
                {
                    th2.Start();
                    th2.Join();
                }
            }
        }
        void Pro2()
        {
            print("YYYYYYYY");
            for (int i = 0; i <= 100; i++)
            {
                progressBar2.Value = i;
                label2.Text = $"{progressBar2.Value}%";
                Thread.Sleep(100);
            }
        }
 
        private void progressBar1_Click(object sender, EventArgs e)
        {
            print("This is Main threading!");
        }
 
        private void Form_3_Load(object sender, EventArgs e)
        {
 
        }
 
        private void Form_3_FormClosing_1(object sender, FormClosingEventArgs e)
        {
            if (th1.ThreadState == ThreadState.Running)
                th1.Abort();
            if (th2.ThreadState == ThreadState.Running)
                th2.Abort();
        }
    }
}

实例三:线程同步(售票模拟)


using System;
using System.Threading;
 
namespace month_9_10._1012
{
    class Run2
    {
        static Print.Print print = Console.WriteLine;
        int _num = 10;
        void Ticket()
        {
            while (true)
            {
                //上锁
                //lock (this)
                //{
                //    if (_num > 0)
                //    {
                //        Thread.Sleep(100);
                //        print(Thread.CurrentThread.Name + "--票数:" + _num--);
                //    }
                //}
 
                //放置监视器
                Monitor.Enter(this);
                if (_num > 0)
                {
                    Thread.Sleep(100);
                    print(Thread.CurrentThread.Name + "--票数:" + _num--);
                }
                Monitor.Exit(this);
            }
        }
        static void Main()
        {
            var a1 = new Run2();
            Thread t1 = new Thread(new ThreadStart(a1.Ticket));
            t1.Name = "线程一";
            Thread t2 = new Thread(new ThreadStart(a1.Ticket));
            t2.Name = "线程二";
            Thread t3 = new Thread(new ThreadStart(a1.Ticket));
            t3.Name = "线程三";
            Thread t4 = new Thread(new ThreadStart(a1.Ticket));
            t4.Name = "线程四";
            t1.Start();
            t2.Start();
            t3.Start();
            t4.Start();
        }
    }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。 

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

C#多线程Thread使用示例详解

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Java多线程Thread类的使用详解

这篇文章主要介绍了Java多线程Thread类的使用及注意事项,在java标准库中提供了一个Thread类来表示/操作线程,Thread类也可以视为是java标准库提供的API
2022-12-03

C#异步多线程中Thread的示例分析

这篇文章给大家分享的是有关C#异步多线程中Thread的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。Thread API这里对 Thread 的一些常用 API 进行介绍,使用一些案例进行说明。由于 T
2023-06-25

c#使用多线程的几种方式示例详解

C#中使用多线程的几种方式有以下几种:1. 使用Thread类:Thread类是C#中最基本的多线程类,可以使用它创建和控制线程。下面是一个使用Thread类创建并启动线程的示例:```csharpusing System;using Sy
2023-08-09

C++中std::thread线程怎么使用

本篇内容主要讲解“C++中std::thread线程怎么使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C++中std::thread线程怎么使用”吧!1:std::thread的基本用法最简
2023-07-04

Java多线程Thread类如何使用

这篇文章主要讲解了“Java多线程Thread类如何使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java多线程Thread类如何使用”吧!Thread类的基本用法1.创建子类,继承自T
2023-07-02

C++Futures与Promises线程使用示例讲解

future和promise的作用是在不同线程之间传递数据。使用指针也可以完成数据的传递,但是指针非常危险,因为互斥量不能阻止指针的访问;而且指针的方式传递的数据是固定的,如果更改数据类型,那么还需要更改有关的接口,比较麻烦
2022-11-21

Java多线程编程基石ThreadPoolExecutor示例详解

这篇文章主要为大家介绍了Java多线程编程基石ThreadPoolExecutor示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
2023-05-16

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录