• <i id='4MU42'><tr id='4MU42'><dt id='4MU42'><q id='4MU42'><span id='4MU42'><b id='4MU42'><form id='4MU42'><ins id='4MU42'></ins><ul id='4MU42'></ul><sub id='4MU42'></sub></form><legend id='4MU42'></legend><bdo id='4MU42'><pre id='4MU42'><center id='4MU42'></center></pre></bdo></b><th id='4MU42'></th></span></q></dt></tr></i><div id='4MU42'><tfoot id='4MU42'></tfoot><dl id='4MU42'><fieldset id='4MU42'></fieldset></dl></div>
    • <bdo id='4MU42'></bdo><ul id='4MU42'></ul>
  • <tfoot id='4MU42'></tfoot>
  • <legend id='4MU42'><style id='4MU42'><dir id='4MU42'><q id='4MU42'></q></dir></style></legend>

        <small id='4MU42'></small><noframes id='4MU42'>

        使用 std::deque 或 std::priority_queue 线程安全吗?

        时间:2024-08-14
          <tbody id='dyT97'></tbody>
          <bdo id='dyT97'></bdo><ul id='dyT97'></ul>
        • <small id='dyT97'></small><noframes id='dyT97'>

            • <legend id='dyT97'><style id='dyT97'><dir id='dyT97'><q id='dyT97'></q></dir></style></legend>

                1. <tfoot id='dyT97'></tfoot>
                  <i id='dyT97'><tr id='dyT97'><dt id='dyT97'><q id='dyT97'><span id='dyT97'><b id='dyT97'><form id='dyT97'><ins id='dyT97'></ins><ul id='dyT97'></ul><sub id='dyT97'></sub></form><legend id='dyT97'></legend><bdo id='dyT97'><pre id='dyT97'><center id='dyT97'></center></pre></bdo></b><th id='dyT97'></th></span></q></dt></tr></i><div id='dyT97'><tfoot id='dyT97'></tfoot><dl id='dyT97'><fieldset id='dyT97'></fieldset></dl></div>
                  本文介绍了使用 std::deque 或 std::priority_queue 线程安全吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  可能的重复:
                  C++ STL std::set 线程安全吗?
                  STL 队列的线程安全

                  我猜不是,我只是想确定一下.意味着 2 个线程使用 相同 std::deque 同时使用 std::deque::push_backpush_front.

                  I'm guessing it isn't, I just want to make sure. meaning 2 threads using the same std::deque using std::deque::push_back or push_front at the same time.

                  同样的问题适用于 std::priority_queue 和函数 std::priority_queue::pushstd::priority_queue::pop..

                  Same question goes for std::priority_queue and the functions std::priority_queue::push and std::priority_queue::pop..

                  那些容器是线程安全的吗?或者我应该亲自将其编程为线程安全的?

                  Are those containers thread-safe? Or I should personally program it to be thread-safe?

                  Tnx 很多.

                  推荐答案

                  来自 Scott Myer 的 Effective STL Item 12.对 STL 容器的线程安全有现实的期望

                  From Scott Myer's Effective STL Item 12. Have realistic expectations about the thread safety of STL containers

                  多个阅读器是安全的.多个线程可以同时读取单个容器的内容,这将正常工作.自然,在读取过程中不能有任何写入者对容器进行操作.

                  Multiple readers are safe. Multiple threads may simultaneously read the contents of a single container, and this will work correctly. Naturally, there must not be any writers acting on the container during the reads.

                  不同容器的多个写入器是安全的.多个线程可以同时写入不同的容器.

                  Multiple writers to different containers are safe. Multiple threads may simultaneously write to different containers.

                  当涉及到线程安全和 STL 容器时,您可以希望有一个允许多个读者的库实现在一个容器上,多个编写器在不同的容器上.您不能指望该库消除手动并发控制的需要,也不能完全依赖任何线程支持.

                  When it comes to thread safely and STL containers, you can hope for a library implementation that allows multiple readers on one container and multiple writers on separate containers. You can't hope for the library to eliminate the need for manual concurrency control, and you can't rely on any thread support at all.

                  这篇关于使用 std::deque 或 std::priority_queue 线程安全吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:将 std::map 与 std::string 键与 int 键一起使用的成本? 下一篇:如何在 std::set 中查找具有特定字段值的对象?

                  相关文章

                  <tfoot id='MdiGT'></tfoot>
                2. <small id='MdiGT'></small><noframes id='MdiGT'>

                3. <legend id='MdiGT'><style id='MdiGT'><dir id='MdiGT'><q id='MdiGT'></q></dir></style></legend>
                    <bdo id='MdiGT'></bdo><ul id='MdiGT'></ul>
                4. <i id='MdiGT'><tr id='MdiGT'><dt id='MdiGT'><q id='MdiGT'><span id='MdiGT'><b id='MdiGT'><form id='MdiGT'><ins id='MdiGT'></ins><ul id='MdiGT'></ul><sub id='MdiGT'></sub></form><legend id='MdiGT'></legend><bdo id='MdiGT'><pre id='MdiGT'><center id='MdiGT'></center></pre></bdo></b><th id='MdiGT'></th></span></q></dt></tr></i><div id='MdiGT'><tfoot id='MdiGT'></tfoot><dl id='MdiGT'><fieldset id='MdiGT'></fieldset></dl></div>