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

      • <bdo id='FTh8X'></bdo><ul id='FTh8X'></ul>

      <legend id='FTh8X'><style id='FTh8X'><dir id='FTh8X'><q id='FTh8X'></q></dir></style></legend>

        <small id='FTh8X'></small><noframes id='FTh8X'>

      1. C++ std::set 线程安全吗?

        Is the C++ std::set thread-safe?(C++ std::set 线程安全吗?)
          <bdo id='Ewsvf'></bdo><ul id='Ewsvf'></ul>
        • <i id='Ewsvf'><tr id='Ewsvf'><dt id='Ewsvf'><q id='Ewsvf'><span id='Ewsvf'><b id='Ewsvf'><form id='Ewsvf'><ins id='Ewsvf'></ins><ul id='Ewsvf'></ul><sub id='Ewsvf'></sub></form><legend id='Ewsvf'></legend><bdo id='Ewsvf'><pre id='Ewsvf'><center id='Ewsvf'></center></pre></bdo></b><th id='Ewsvf'></th></span></q></dt></tr></i><div id='Ewsvf'><tfoot id='Ewsvf'></tfoot><dl id='Ewsvf'><fieldset id='Ewsvf'></fieldset></dl></div>

          <small id='Ewsvf'></small><noframes id='Ewsvf'>

            <tbody id='Ewsvf'></tbody>

            <legend id='Ewsvf'><style id='Ewsvf'><dir id='Ewsvf'><q id='Ewsvf'></q></dir></style></legend>
            • <tfoot id='Ewsvf'></tfoot>
                1. 本文介绍了C++ std::set 线程安全吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个关于 std::set 线程安全的问题.

                  I've a question about the thread safety of std::set.

                  据我所知,我可以迭代一个集合并添加/删除成员,这不会使迭代器失效.

                  As far as I know I can iterate over a set and add/erase members and that doesn't invalidate the iterators.

                  但请考虑以下场景:

                  • 线程'A'遍历一组shared_ptr
                  • 线程B"偶尔会向该集合中添加项目.

                  我在程序运行时遇到了段错误,但我不确定为什么会发生这种情况.缺乏线程安全是原因吗?

                  I've experienced segfaults as the program runs and I'm not sure why this happens. Is lack of thread safety the cause?

                  推荐答案

                  STL 没有内置线程支持,所以你必须扩展 STL使用您自己的同步机制编写代码以在其中使用 STL多线程环境.

                  STL has no built in thread support, so you'll have to extend the STL code with your own synchronization mechanisms to use STL in a multithreaded environment.

                  例如看这里:link文字

                  由于set是一个容器类,MSDN有以下关于容器线程安全的说法.

                  Since set is a container class MSDN has following to say about the thread safety of the containers.

                  单个对象对于从多个线程读取是线程安全的.例如,给定一个对象 A,同时从线程 1 和线程 2 读取 A 是安全的.

                  A single object is thread safe for reading from multiple threads. For example, given an object A, it is safe to read A from thread 1 and from thread 2 simultaneously.

                  如果一个线程正在写入单个对象,则必须保护在同一线程或其他线程上对该对象的所有读取和写入.例如,给定一个对象 A,如果线程 1 正在写入 A,则必须阻止线程 2 读取或写入 A.

                  If a single object is being written to by one thread, then all reads and writes to that object on the same or other threads must be protected. For example, given an object A, if thread 1 is writing to A, then thread 2 must be prevented from reading from or writing to A.

                  即使另一个线程正在读取或写入同一类型的不同实例,读取和写入一个类型的一个实例也是安全的.例如,给定相同类型的对象 A 和 B,如果 A 在线程 1 中写入而 B 在线程 2 中读取则是安全的.

                  It is safe to read and write to one instance of a type even if another thread is reading or writing to a different instance of the same type. For example, given objects A and B of the same type, it is safe if A is being written in thread 1 and B is being read in thread 2.

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

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What is the past-the-end iterator in STL C++?(STL C++ 中的最后迭代器是什么?)
                  vector::at vs. vector::operator[](vector::at 与 vector::operator[])
                  C++ equivalent of StringBuffer/StringBuilder?(C++ 等效于 StringBuffer/StringBuilder?)
                  Adding types to the std namespace(将类型添加到 std 命名空间)
                  How to use std::find/std::find_if with a vector of custom class objects?(如何将 std::find/std::find_if 与自定义类对象的向量一起使用?)
                  I want to convert std::string into a const wchar_t *(我想将 std::string 转换为 const wchar_t *)
                  • <i id='3NpTC'><tr id='3NpTC'><dt id='3NpTC'><q id='3NpTC'><span id='3NpTC'><b id='3NpTC'><form id='3NpTC'><ins id='3NpTC'></ins><ul id='3NpTC'></ul><sub id='3NpTC'></sub></form><legend id='3NpTC'></legend><bdo id='3NpTC'><pre id='3NpTC'><center id='3NpTC'></center></pre></bdo></b><th id='3NpTC'></th></span></q></dt></tr></i><div id='3NpTC'><tfoot id='3NpTC'></tfoot><dl id='3NpTC'><fieldset id='3NpTC'></fieldset></dl></div>
                    1. <tfoot id='3NpTC'></tfoot>

                          <legend id='3NpTC'><style id='3NpTC'><dir id='3NpTC'><q id='3NpTC'></q></dir></style></legend>

                          • <bdo id='3NpTC'></bdo><ul id='3NpTC'></ul>

                            <small id='3NpTC'></small><noframes id='3NpTC'>

                              <tbody id='3NpTC'></tbody>