• 揭秘委托与多线程使用


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

    namespace WindowsFormsApplication1
    {
        public partial class MainForm : Form
        {
            private delegate void ChangeTemperatureHander();
            public MainForm()
            {
                InitializeComponent();
            }

            private void toolStripMenuItem1_Click(object sender, EventArgs e)
            {

            }

            private void btnStart_Click(object sender, EventArgs e)
            {
                th = new Thread(this.Heating)

               //通过这个来说明该线程是主线程的子线程,当主线程关闭时,子线程一同关闭。

                th.IsBackground = true;
                th.Start();
            }

            private Thread th;
            private int temperature;
            private void Heating()
            {
                for (int i = 0; i < 100; i++)
                {
                    temperature = i;

                    //不能引用一个子线程来改变另外的一个线程的数据,故使用委托。
                    this.Invoke(new ChangeTemperatureHander(OnChangeTemparature));
                    Thread.Sleep(1000);
                }
            }
            private void OnChangeTemparature()
            {
                this.txtemperature.Text = temperature.ToString();
            }
        }
    }

  • 相关阅读:
    如何勾选 servlet如何获取?
    过滤器 如何实现获取不到用户名跳转回登录界面
    验证码
    cookie保存用户名及密码
    游标
    存储过程和自定义函数的区别
    瞎搞
    sql 试图索引
    sql 常用函数
    sql 简单的定义变量 声明 输出
  • 原文地址:https://www.cnblogs.com/wangyhua/p/4050685.html
Copyright © 2020-2023  润新知