.NET 4中的多线程编程之三:共享数据(下)
上文介绍的互斥方法都是用于进程间的不同线程的互斥。.NET 提供了不同进程间线程互斥的方法。可以使用named mutex来实现进程间的互斥。named mutex是一个全局的mutex,通过给mutex一个名称,可以在所有进程间有效。注意要仔细选择mutex的名称,避免和其他程序冲突。
using System;
using System.Threading;
using System.Threading.Tasks;
namespace TaskParallel
{
class MainClass
{
public static void Main(string[] args)
{
string mutexName = "Parallel.MainClass";
Mutex globalMutex;
try
{
globalMutex = Mutex.OpenExisting(mutexName);
}
catch (WaitHandleCannotBeOpenedException)
{
globalMutex = new Mutex(false, mutexName);
}
Task t = new Task(() =>
{
while (true)
{
Console.WriteLine("Waiting to acquire Mutex");
globalMutex.WaitOne();
Console.WriteLine("Acquired.Press Enter to release");
Console.ReadLine();
globalMutex.ReleaseMutex();
Console.WriteLine("Released");
}
});
t.Start();
t.Wait();
}
}
}
首先使用Mutex.OpenExist方法来判断是否已经存在该命名mutex,如果不存在,则会抛出一个异常,再使用Mutex(bool,string)构造函数创建新的mutex,第一个参数如果为true,那么这个mutex初始情况下就已经被锁,需要调用mutex.Release()之后才能使用。Mutex还有一个构造函数,可以避免抛出异常,
bool created;
Mutex globalMutex = new Mutex(false, mutexName, out created);
相关新闻>>
- 发表评论
-
- 最新评论 更多>>