码迷,mamicode.com
首页 > 编程语言 > 详细

2017-5-4 线程

时间:2017-05-04 21:59:26      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:generic   .text   sleep   data   rgs   drawing   logs   tar   click   

线程:
帮助老板干活的,不会干扰老板的正常工作

如果一段代码的执行需要时间,那么必须开启一个新线程来执行,
如果不开线程,窗口会出现假死

开线程:

Thread th = new Thread(委托);
th.IsBackground = true; //设置后台线程
th.Start();

线程默认是不允许跨线程访问对象的
在构造函数中用Control.CheckForIllegalCrossThreadCalls = false; 可以允许跨线程访问对象。
 关闭线程:

th.Abort();

线程最多可以执行一个参数的方法,这个参数必须是object类型

利用线程做一个三级连动的小程序:

技术分享

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 线程联系__小程序___2017_5_4
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            Control.CheckForIllegalCrossThreadCalls = false;
        }
        Thread th = null;
        Thread th1 = null;
        Thread th2 = null;
        private void button1_Click(object sender, EventArgs e)
        {
           th = new Thread(test1);
            th.IsBackground = true;
            th.Start();
            th1 = new Thread(test2);
            th1.IsBackground = true;
            th1.Start();
            th2 = new Thread(test3);
            th2.IsBackground = true;
            th2.Start();
         }
      

        private void button2_Click(object sender, EventArgs e)
        {
            th.Abort();
            th1.Abort();
            th2.Abort();
        }
        public void test1()
        {
            Random r = new Random();

            string[] name = new string[] { "郑倩", "徐强", "子君", "子轩", "郑剑" };
            while (true)
            {
                int a = r.Next(1, name.Length);
                textBox1.Text = name[a];

                Thread.Sleep(100);
            }
        }
        public void test2()
        {
            Random r = new Random();


            string[] city = new string[] { "博兴", "张店", "马桥", "济南", "青岛" };


            while (true)
            {
                int b = r.Next(1, city.Length);


                textBox2.Text = city[b];



                Thread.Sleep(100);
            }
        } 
 
        public void test3()
        {
            Random r = new Random();
            string[] events = new string[] { "吃汉堡", "旅游", "淘气", "上学", "写代码", "" };
            while (true)
            {
                int c = r.Next(1, events.Length);
                textBox3.Text = events[c];
                Thread.Sleep(100);
            }      
          
        
               
        }

      }
}

 

2017-5-4 线程

标签:generic   .text   sleep   data   rgs   drawing   logs   tar   click   

原文地址:http://www.cnblogs.com/zhengqian/p/6809486.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!