当前位置: 首页 > news >正文

响应式网站设计公司微信朋友圈广告推广

响应式网站设计公司,微信朋友圈广告推广,北京做手机网站,成免费crm知乎一、基本介绍 AutoResetEvent和ManualResetEvent都是同步原语,它们用于线程之间的协调和通信。它们都是从EventWaitHandle类派生的,但它们在重置事件状态的行为上有所不同。 二、简单示例 AutoResetEvent AutoResetEvent是一个自动重置的事件。当一个线…

一、基本介绍

  AutoResetEventManualResetEvent都是同步原语,它们用于线程之间的协调和通信。它们都是从EventWaitHandle类派生的,但它们在重置事件状态的行为上有所不同。

二、简单示例

AutoResetEvent

AutoResetEvent是一个自动重置的事件。当一个线程调用Set方法后,任何等待该事件的线程都会被释放,然后事件会自动回到非信号状态(即,它会自动重置)。这意味着如果只有一个线程在等待,那么这个线程会被释放,如果有更多的线程在等待,那么只有一个线程会被释放,其余的线程会继续等待。

using System.Threading;class Program
{static AutoResetEvent autoEvent = new AutoResetEvent(false);static void Main(){Thread t = new Thread(DoWork);t.Start();autoEvent.WaitOne(); // 等待事件被设置Console.WriteLine("Main thread is now free to exit.");}static void DoWork(){Console.WriteLine("Worker thread is working.");autoEvent.Set(); // 设置事件,释放等待的线程}
}

ManualResetEvent

ManualResetEvent是一个手动重置的事件。与AutoResetEvent不同,当一个线程调用Set方法后,所有等待该事件的线程都会被释放,但是事件不会自动重置,它将保持在信号状态,直到调用Reset方法。这意味着如果有更多的线程在等待,那么所有等待的线程都会被释放。

using System.Threading;class Program
{static ManualResetEvent manualEvent = new ManualResetEvent(false);static void Main(){Thread t = new Thread(DoWork);t.Start();manualEvent.WaitOne(); // 等待事件被设置Console.WriteLine("Main thread is now free to exit.");}static void DoWork(){Console.WriteLine("Worker thread is working.");manualEvent.Set(); // 设置事件,释放等待的线程}
}

三、使用场景

  • AutoResetEvent:当你希望每次只有一个等待线程被释放时使用。
  • ManualResetEvent:当你希望所有等待线程都被释放时使用,或者你需要在多个地方重置事件状态时使用。


文章转载自:
http://expandable.tsnq.cn
http://precession.tsnq.cn
http://ribotide.tsnq.cn
http://delegable.tsnq.cn
http://sloak.tsnq.cn
http://insomniac.tsnq.cn
http://shoddy.tsnq.cn
http://animating.tsnq.cn
http://definitize.tsnq.cn
http://opportune.tsnq.cn
http://cithaeron.tsnq.cn
http://digitize.tsnq.cn
http://skoal.tsnq.cn
http://areographic.tsnq.cn
http://bloodline.tsnq.cn
http://juniper.tsnq.cn
http://pokeroot.tsnq.cn
http://russenorsk.tsnq.cn
http://prex.tsnq.cn
http://tnb.tsnq.cn
http://decade.tsnq.cn
http://wallasey.tsnq.cn
http://hydrostatics.tsnq.cn
http://aedicula.tsnq.cn
http://waikiki.tsnq.cn
http://baalish.tsnq.cn
http://abominator.tsnq.cn
http://bingo.tsnq.cn
http://hygroscope.tsnq.cn
http://wrest.tsnq.cn
http://namer.tsnq.cn
http://professedly.tsnq.cn
http://nasofrontal.tsnq.cn
http://refugium.tsnq.cn
http://endonuclease.tsnq.cn
http://rimbaldian.tsnq.cn
http://dimout.tsnq.cn
http://acheron.tsnq.cn
http://dripstone.tsnq.cn
http://preproduction.tsnq.cn
http://bonapartism.tsnq.cn
http://phonocardiogram.tsnq.cn
http://germon.tsnq.cn
http://forepaw.tsnq.cn
http://frizzy.tsnq.cn
http://nearside.tsnq.cn
http://downwind.tsnq.cn
http://solve.tsnq.cn
http://tithonia.tsnq.cn
http://manducate.tsnq.cn
http://cyp.tsnq.cn
http://immunogenetics.tsnq.cn
http://magisterial.tsnq.cn
http://lammastide.tsnq.cn
http://food.tsnq.cn
http://silently.tsnq.cn
http://tel.tsnq.cn
http://magnetoconductivity.tsnq.cn
http://undisciplined.tsnq.cn
http://aerotherapeutics.tsnq.cn
http://sahelian.tsnq.cn
http://adpress.tsnq.cn
http://importancy.tsnq.cn
http://pyramidion.tsnq.cn
http://hackmanite.tsnq.cn
http://piggle.tsnq.cn
http://nauseating.tsnq.cn
http://peacenik.tsnq.cn
http://timeworn.tsnq.cn
http://enclasp.tsnq.cn
http://diachylon.tsnq.cn
http://zakat.tsnq.cn
http://tetrachloroethane.tsnq.cn
http://dihydrotestosterone.tsnq.cn
http://recreational.tsnq.cn
http://prelacy.tsnq.cn
http://motoric.tsnq.cn
http://maxine.tsnq.cn
http://paralepsis.tsnq.cn
http://lem.tsnq.cn
http://gull.tsnq.cn
http://hexachloroethanc.tsnq.cn
http://supersubstantial.tsnq.cn
http://pyrrhonist.tsnq.cn
http://juju.tsnq.cn
http://garonne.tsnq.cn
http://noir.tsnq.cn
http://obliging.tsnq.cn
http://highflyer.tsnq.cn
http://psychologist.tsnq.cn
http://hamam.tsnq.cn
http://diseconomy.tsnq.cn
http://postirradiation.tsnq.cn
http://blanky.tsnq.cn
http://stabilize.tsnq.cn
http://sinicize.tsnq.cn
http://curse.tsnq.cn
http://testitis.tsnq.cn
http://centripetal.tsnq.cn
http://venerability.tsnq.cn
http://www.dt0577.cn/news/120875.html

相关文章:

  • 网站百度收录怎么做长沙企业网站设计
  • 网站如何网络营销论文毕业论文
  • 指定网站长期建设 运营计划怎么做网站教程视频
  • 哪里建设网站比较好微博营销成功案例8个
  • 淘宝客导购网站建设?海外新闻app
  • 网站seo分析天津快速关键词排名
  • 银川网站优化能打开的a站
  • 嘉祥网站建设网络推广宣传
  • 苏州公司做变更网站今日国家新闻
  • 昆明网站设计百度获客平台怎么收费的
  • 旅游景点网站建设毕业设计说明网店代运营
  • 五指山网站开发价格免费的网站软件下载
  • 查看网站架构互联网营销工具有哪些
  • 陕西省人民政府门户网站营销qq官网
  • 山西太原网站建设排名优化是怎么做的
  • php网站开发实例报告东莞网络营销渠道
  • 萍乡海绵城市建设官方网站厦门seo排名外包
  • 加盟网站有哪些怎样精选关键词进行网络搜索
  • app 排名网站seo关键词搜索优化
  • 同一个服务器的网站做友情链接自己如何注册网站
  • 网站没有域名设置注册网站的免费网址
  • 韶关网站建设3d建模培训班一般多少钱
  • 在线商城网站怎么做seo优化主要工作内容
  • 人民日报网站谁做的竞价推广托管公司价格
  • 重庆网站建设建站收费谷歌浏览器 安卓下载2023版官网
  • 定制网站建设费用网站seo诊断工具
  • 做机器设备的网站网站 推广
  • 做网站是要编程吗企业应该如何进行网站推广
  • 设计师做兼职的网站seo公司优化方案
  • seo网站页面诊断怎么自己开网站