zoukankan      html  css  js  c++  java
  • C#线程的使用

     

    C#线程的使用简单示例代码如下:

    using System;
    using System.Threading;

    class Program
    {
    static void Main(string[] args)
    {
    Thread.CurrentThread.Name = "主线程";
    Thread thread1 = new Thread(new ThreadStart(Program.Output));
    thread1.Name = "子线程1";
    thread1.Priority = ThreadPriority.Lowest;
    Thread thread2 = new Thread(new ThreadStart(Program.Output));
    thread2.Name = "子线程2";
    thread2.Priority = ThreadPriority.Highest;
    thread1.Start();
    thread2.Start();
    }

    static void Output()
    {
    for (int i = 0; i < 10; i++)
    {
    Console.WriteLine("线程:{0},i的值:{1}", Thread.CurrentThread.Name, i);
    }
    }
    }

    尊重作者,转发请注明出处:http://www.cnblogs.com/minotmin
    谢谢阅读,有错请指出,不甚感激。

  • 相关阅读:
    双机信任关系
    VCS双机原理
    VCS常用指令
    TCL数组
    TCL数据类型
    TCL列表
    TCL基本语法
    CentOS防火墙中端口的开启和关闭
    会话保持技术及原理技术
    ESN
  • 原文地址:https://www.cnblogs.com/minotmin/p/2701889.html
Copyright © 2011-2022 走看看