C#的多线程机制初探(5)

C#的多线程机制初探(5)


Author: 挽留刀  &;nbspFrom:Internet


               
  首先,我们定义一个被操作的对象的类Cell,在这个类里,有两个方法:ReadFromCell()和WriteToCell。消费者线程将调用ReadFromCell()读取cellContents的内容并且显示出来,生产者进程将调用WriteToCell()方法向cellContents写入数据。
 
  public class Cell
  {
  int cellContents; // Cell对象里边的内容
  bool readerFlag = false; // 状态标志,为true时可以读取,为false则正在写入
  public int ReadFromCell( )
  {
  lock(this) // Lock关键字保证了什么,请大家看前面对lock的介绍
  {
  if (!readerFlag)//如果现在不可读取
  {
  try
  {
  //等待WriteToCell方法中调用Monitor.Pulse()方法
  Monitor.Wait(this);
  }
  catch (SynchronizationLockException e)
  {
  Console.WriteLine(e);
  }
  catch (ThreadInterruptedException e)
  {
  Console.WriteLine(e);
  }
  }
  Console.WriteLine("Consume: {0}",cellContents);
  readerFlag = false; //重置readerFlag标志,表示消费行为已经完成
  Monitor.Pulse(this); //通知WriteToCell()方法(该方法在另外一个线程中执行,等待中)
  }
  return cellContents;
  }
 
  public void WriteToCell(int n)
  {
  lock(this)
  {
  if (readerFlag)
  {
  try
  {
  Monitor.Wait(this);
  }
  catch (SynchronizationLockException e)
  {
  //当同步方法(指Monitor类除Enter之外的方法)在非同步的代码区被调用
  Console.WriteLine(e);
  }
  catch (ThreadInterruptedException e)
  {
  //当线程在等待状态的时候中止
  Console.WriteLine(e);
  }
  }
  cellContents = n;
  Console.WriteLine("Produce: {0}",cellContents);
  readerFlag = true;
  Monitor.Pulse(this); //通知另外一个线程中正在等待的ReadFromCell()方法
  }
  }
  }
 
  下面定义生产者CellProd和消费者类CellCons,它们都只有一个方法ThreadRun(),以便在Main()函数中提供给线程的ThreadStart代理对象,作为线程的入口。
 
  public class CellProd
  {
  Cell cell; // 被操作的Cell对象
  int quantity = 1; // 生产者生产次数,初始化为1
 
  public CellProd(Cell box, int request)
  {
  //构造函数
  cell = box;
  quantity = request;
  }
  public void ThreadRun( )
  {
  for(int looper=1; looper<=quantity; looper  )
  cell.WriteToCell(looper); //生产者向操作对象写入信息
  }
  }
 
  public class CellCons
  {
  Cell cell;
  int quantity = 1;
 
  public CellCons(Cell box, int request)
  {
  cell = box;
  quantity = request;
  }
  public void ThreadRun( )
  {
  int valReturned;
  for(int looper=1; looper<=quantity; looper  )
  valReturned=cell.ReadFromCell( );//消费者从操作对象中读取信息
  }
  } 
 
    (2005-11-07:02:54)
 感谢原创者的辛勤劳动,希望对您有所帮助,转载请注明原出处。
 警告:持续变种木马正在发起农历新年攻势!
 您可能对 [C#] 的这些文章也感兴趣:
论C#变得越来越臃肿是不可避免的
查询IP所在区段(C#)
在C#中利用SharpZipLib进行文件的压缩和解压缩
C# - Append a host header by code in IIS
在C#中调用Microsoft.VisualBasic命名空间下的类型验证函数
使用泛型实现单例提供者(原创翻译)
C#2 anonymous methods
Master Pages: Tips, Tricks, and Traps
Microsoft .NET 框架资源基础
基于.Net平台应用程序唯一运行实例实现
.net Framework 2.0 专门提供了配置文件的操作
正确实现 IDisposable