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

C#多线程的简单例子

时间:2014-05-19 20:01:31      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   code   java   

 

 

bubuko.com,布布扣
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
//using System.Threading.Tasks;
using System.IO;
using System.Collections;

namespace ConsoleApplication2
{

     class program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("开始一个新的线程,名为次线程");
            Thread t = new Thread(new ThreadStart(ThreadProc));
            t.Start();
            for (int i = 0; i < 4; i++)
            {
                Console.WriteLine("主线程:" + i);
                Thread.Sleep(1000);
            }
            Console.WriteLine("调用Join函数等待次线程结束");
            //当次线程执行完毕后,Join阻塞调用线程,直到某个线程终止为止,本例为次线程
           t.Join();
            Console.WriteLine("线程执行完毕");
        }
        public static void ThreadProc()
        {
            for (int i = 0; i < 10; i++)
            {
                Console.WriteLine("ThreadPorc:{0}", i);
                Thread.Sleep(1000);//将当前进程阻塞指定的毫秒数
            }
        }
       
    }
}
bubuko.com,布布扣

 

 

C#多线程的简单例子,布布扣,bubuko.com

C#多线程的简单例子

标签:style   blog   class   c   code   java   

原文地址:http://www.cnblogs.com/XDJjy/p/3734551.html

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