欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#信号量用法简单示例

程序员文章站 2022-05-18 14:17:56
本文实例讲述了c#信号量用法。分享给大家供大家参考,具体如下: using system; using system.collections.generic;...

本文实例讲述了c#信号量用法。分享给大家供大家参考,具体如下:

using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading;
/*
 * 标题:如何使用信号量的示例代码
 * author:kagula
 * date:2015-6-16
 * environment:vs2010sp1, .net framework 4 client profile, c#.
 * note:[1]“信号量”可以看成是“授权(证)池”。
 *     一个授权(证)池内有零个或多个授权(证)。
 *   [2]下面的示例sem of semaphore相当于最多只能有一个授权(证)的授权池。
 *   [3]每调用一次sem.release添加一个授权(证)。
 *     连接调用多次sem.release导致超出授权池所能容纳的授权(证)数量,会抛出异常。
 *   [4]每调用一次sem.waitone就使用一个授权(证)。
 * */
namespace kagula
{
  class mysemaphore
  {
    //第一个参数,代表当前授权次数。
    //      0表示没有授权(证)。
    //第二个参数,代表semaphore实例最多能容纳几个授权证。
    //      1表示最大授权次数为1次。
    //      超出允许的授权次数,比如说sem.release连续调用了两次,会抛出异常。
    public static semaphore sem = new semaphore(0, 1);
    public static void main()
    {
      //添加一次授权。
      //释放一个sem.waitone()的阻塞。
      sem.release();
      mythread mythrd1 = new mythread("thrd #1");
      mythread mythrd2 = new mythread("thrd #2");
      mythread mythrd3 = new mythread("thrd #3");
      mythread mythrd4 = new mythread("thrd #4");
      mythrd1.thrd.join();
      mythrd2.thrd.join();
      mythrd3.thrd.join();
      mythrd4.thrd.join();
      //input any key to continue...
      console.readkey();
    }//end main function
  }//end main class
  class mythread
  {
    public thread thrd;
    public mythread(string name)
    {
      thrd = new thread(this.run);
      thrd.name = name;
      thrd.start();
    }
    void run()
    {
      console.writeline(thrd.name + "正在等待一个许可(证)……");
      //如果不加参数会导致无限等待。
      if (mysemaphore.sem.waitone(1000))
      {
        console.writeline(thrd.name + "申请到许可(证)……");
        thread.sleep(500);
        //虽然下面添加了许可,但是,其它线程可能没拿到许可,超时退出了。
        console.writeline(thrd.name + "添加一个许可(证)……");
        mysemaphore.sem.release();
      }
      else
      {
        console.writeline(thrd.name + " 超时(等了一段时间还是没拿到许可(证))退出……");
      }
    }
  }//end class
}//end namespace

更多关于c#相关内容感兴趣的读者可查看本站专题:《c#程序设计之线程使用技巧总结》、《c#操作excel技巧总结》、《c#中xml文件操作技巧汇总》、《c#常见控件用法教程》、《winform控件用法总结》、《c#数据结构与算法教程》、《c#数组操作技巧总结》及《c#面向对象程序设计入门教程

希望本文所述对大家c#程序设计有所帮助。