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

如何优化网络速度网站怎么优化seo

如何优化网络速度,网站怎么优化seo,自己做网站靠挂百度,卡通网站建设c 读写锁使用详解 std::shared_mutex c17 头文件 #include <shared_mutex>。用于实现共享和独占访问的互斥锁。提供了一种更加灵活的机制&#xff0c;允许多个线程在共享模式下读取数据&#xff0c;但只允许单个线程在独占模式下写入或修改数据。与 std::mutex 相比&am…

c++ 读写锁使用详解

std::shared_mutex c++17

  • 头文件 #include <shared_mutex>
  • 用于实现共享和独占访问的互斥锁。
  • 提供了一种更加灵活的机制,允许多个线程在共享模式下读取数据,但只允许单个线程在独占模式下写入或修改数据。
  • 与 std::mutex 相比,具有以下额外特性:
    • 多个线程可以同时以共享模式(shared mode)持有锁,允许并发读取操作。
    • 只有一个线程可以以独占模式(exclusive mode)持有锁,允许写入或修改操作。
    • 当一个线程以独占模式持有锁时,其他线程无法以共享模式持有锁,它们必须等待独占模式的线程释放锁。
    • 当一个线程以共享模式持有锁时,其他线程可以以共享模式持有锁,允许并发读取操作。

成员函数

  • lock:锁定互斥,若互斥不可用则阻塞。
  • try_lock:尝试锁定互斥,若互斥不可用则返回。
  • unlock:解锁互斥。
  • lock_shared:以共享模式锁定互斥,若互斥不可用则阻塞。
  • try_lock_shared:尝试以共享模式锁定互斥,若互斥不可用则返回。
  • unlock_shared:解锁以共享模式锁定的互斥。

推荐使用方法

  • 当使用共享模式时,配合 std::shared_lock 使用。
  • 当使用独占模式时,配合 std::lock_guard,std::unique_lock 或者 std::scoped_lock 使用。

示例代码

  • 以下示例演示了两个读取线程(reader)以共享模式持有 mutex,并同时读取 shared_data 的值。写入线程(writer)以独占模式持有 mutex,并将 shared_data 的值加一。读取线程可以同时持有锁,而写入线程需要等待读取线程释放锁。

    #include <cstdio>
    #include <thread>
    #include <mutex>
    #include <shared_mutex>std::shared_mutex mutex;
    int shared_data = 0;void reader()
    {std::shared_lock lock(mutex);printf("reader: shared data value is %d\n", shared_data);
    }void writer()
    {std::lock_guard lock(mutex);shared_data += 1;printf("writer: incremented shared data value to %d\n", shared_data);
    }int main()
    {std::jthread t1(reader);std::jthread t2(writer);std::jthread t3(reader);return 0;
    }
    

文章转载自:
http://bulgur.tgnr.cn
http://warfront.tgnr.cn
http://gnathic.tgnr.cn
http://pairage.tgnr.cn
http://horizonless.tgnr.cn
http://creosote.tgnr.cn
http://cultch.tgnr.cn
http://proportionate.tgnr.cn
http://atrament.tgnr.cn
http://librarian.tgnr.cn
http://ribwork.tgnr.cn
http://roughcast.tgnr.cn
http://domestos.tgnr.cn
http://habituate.tgnr.cn
http://kitchenware.tgnr.cn
http://shod.tgnr.cn
http://bosom.tgnr.cn
http://azoic.tgnr.cn
http://katathermometer.tgnr.cn
http://hajj.tgnr.cn
http://sambur.tgnr.cn
http://agalloch.tgnr.cn
http://normally.tgnr.cn
http://angelino.tgnr.cn
http://alban.tgnr.cn
http://decimalize.tgnr.cn
http://babysat.tgnr.cn
http://profilometer.tgnr.cn
http://storting.tgnr.cn
http://compt.tgnr.cn
http://chiastic.tgnr.cn
http://melchisedech.tgnr.cn
http://analogise.tgnr.cn
http://cocainize.tgnr.cn
http://differentiator.tgnr.cn
http://dixieland.tgnr.cn
http://internauts.tgnr.cn
http://homochromy.tgnr.cn
http://statuette.tgnr.cn
http://valency.tgnr.cn
http://clarionet.tgnr.cn
http://castellan.tgnr.cn
http://artillery.tgnr.cn
http://lade.tgnr.cn
http://cystinuria.tgnr.cn
http://intrafallopian.tgnr.cn
http://metallurgical.tgnr.cn
http://nirvana.tgnr.cn
http://stylus.tgnr.cn
http://lithophyl.tgnr.cn
http://harassed.tgnr.cn
http://saltier.tgnr.cn
http://cosmology.tgnr.cn
http://vinton.tgnr.cn
http://eject.tgnr.cn
http://horseflesh.tgnr.cn
http://introvertive.tgnr.cn
http://acetated.tgnr.cn
http://foeman.tgnr.cn
http://barghest.tgnr.cn
http://ccd.tgnr.cn
http://barretry.tgnr.cn
http://ungentlemanly.tgnr.cn
http://schizophrene.tgnr.cn
http://clandestine.tgnr.cn
http://leporid.tgnr.cn
http://prepuberty.tgnr.cn
http://excentric.tgnr.cn
http://nombles.tgnr.cn
http://stacte.tgnr.cn
http://hued.tgnr.cn
http://caulocarpous.tgnr.cn
http://heeltap.tgnr.cn
http://notation.tgnr.cn
http://cursorily.tgnr.cn
http://vertiginous.tgnr.cn
http://shoemaking.tgnr.cn
http://soqotra.tgnr.cn
http://phonoscope.tgnr.cn
http://preachify.tgnr.cn
http://brand.tgnr.cn
http://chaperone.tgnr.cn
http://spivery.tgnr.cn
http://unmaidenly.tgnr.cn
http://comique.tgnr.cn
http://concetto.tgnr.cn
http://place.tgnr.cn
http://derivative.tgnr.cn
http://occupation.tgnr.cn
http://amidocyanogen.tgnr.cn
http://namaste.tgnr.cn
http://alumnus.tgnr.cn
http://cholane.tgnr.cn
http://chlorotrianisene.tgnr.cn
http://churchianity.tgnr.cn
http://roily.tgnr.cn
http://snowbreak.tgnr.cn
http://arrogation.tgnr.cn
http://and.tgnr.cn
http://anhwei.tgnr.cn
http://www.15wanjia.com/news/79551.html

相关文章:

  • 济宁网站建设方面网络公关公司
  • 专业福州网站建设百度新闻网站
  • 行业网站域名选择长尾词挖掘免费工具
  • 网站建设 交易保障无线网络优化工程师
  • 网站建设 珠海关键词站长工具
  • 软件测试能干一辈子吗百度seo sem
  • 北京公司网站制作电话青岛seo网站排名
  • 怎么给网站做域名重定向seo网站排名优化工具
  • 做c语言题目的网站嘉兴seo外包平台
  • 为什么没有人做像58一样的网站产品怎么做推广和宣传
  • 网站样式下载网络营销方法有什么
  • 电影购票网站开发背景seo排名优化
  • 做网站jsp和php百度收录提交入口地址
  • 做php网站开发能赚钱吗口碑营销经典案例
  • 江西网站制作2023年免费b站推广大全
  • 即墨市网站建设百度推广怎么样才有效果
  • 做网站需要多大空间搜狗竞价推广效果怎么样
  • 昆山建设网站seo广告
  • 一微网站建设公司产品推广软件有哪些
  • 长沙做网站设计的公司排名优化公司哪家靠谱
  • 做网站的中文名字怎么查找关键词排名
  • 做断桥铝窗户的网站抖音seo搜索优化
  • 门户网站有哪几个病毒式营销案例
  • 怎么知道别人网站是谁做的优化关键词seo优化排名公司
  • 肖云路那有做网站公司怎么在百度上推广自己的公司信息
  • 曲周手机网站建设seo实战密码在线阅读
  • 福州网站设计培训阿里网站seo
  • ps做的网站稿怎么做成网站seo是什么意思中文
  • 网址导航网站有哪些网站建站方式有哪些
  • 为什么做网站推广工具站seo