您的位置:首页 > 编程语言 > C#

C#Thread的使用

2016-06-02 16:55 405 查看
转载自:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Permissions;
using System.Threading;

namespace ThreadInterupt
{
class Program
{
static void Main(string[] args)
{
StayAwake stay = new StayAwake();
for (int i = 0; i < 3; i++)
{
Thread.Sleep(1000);
stay.PrintfState();
}
stay.InitThread();
}
}

class StayAwake
{
bool sleepSwitch = false;

public bool SleepSwitch
{
set
{
sleepSwitch = value;
}
}

private Thread m_Thread = null;

public StayAwake()
{
m_Thread = new Thread(new ThreadStart(this.ThreadMethod));
m_Thread.Start();
}

public void InitThread()
{
if (this.m_Thread != null)
{
try
{
this.m_Thread.Interrupt();
}
catch( ThreadInterruptedException e )
{
Console.WriteLine("state " + this.m_Thread.ThreadState);
}
}
}

public void PrintfState()
{
Console.WriteLine("state " + this.m_Thread.ThreadState);
}

public void ThreadMethod()
{
while(!sleepSwitch)
{
Console.WriteLine("in method stat " + this.m_Thread.ThreadState);
try
{
Console.WriteLine("going to sleep");
Thread.Sleep(Timeout.Infinite);
}
catch (ThreadInterruptedException e)
{
Console.WriteLine("interrupt thread");
if (this.m_Thread.ThreadState == ThreadState.Running)
{
//notes: here you can to do what you want
// for (int i = 0; i < 10; i++)
// {
// PrintfState();
// }
}
}
}
}
}
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c# 多线程