• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

.NET 线程同步(2)

发布: 2007-7-01 11:09 | 作者: admin | 来源: | 查看: 14次 | 进入软件测试论坛讨论

领测软件测试网 Monitor类的TryEnter()方法非常类似于Enter()方法,他试图获得对象的独占锁,不过它不会象Enter()方法那样暂停. 如果线程成功进入,则TryEnter()方法返回True.
TryEnter()有3种重载方法,其中两个都带有超时参数,表示等待锁定的时间.

using System;
using System.Threading;

namespace MonitorTryEnter
{
public class TryEnter
{
public TryEnter()
{
}

public void CriticalSection()
{
bool b=Monitor.TryEnter(this,1000);
Console.WriteLine("Thread "+Thread.CurrentThread.GetHashCode()+" TryEnter Value "+b);
for(int i=1;i<=3;i++)
{
Thread.Sleep(1000);
Console.WriteLine(i+" "+Thread.CurrentThread.GetHashCode()+" ");
}
Monitor.Exit(this);
}

public static void Main()
{
TryEnter a=new TryEnter();
Thread t1=new Thread(new ThreadStart(a.CriticalSection));
Thread t2=new Thread(new ThreadStart(a.CriticalSection));
t1.Start();
t2.Start();
}
}
}
运行结果:



在可能发生竞争,但不希望线程睡眠某个未指定的时间时,就可以使用TryEnter().

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网