So we created a map. We want to get some_type blah = map_variable[some_not_inserted_yet_value] this would call add new item to map if one was not previosly created. So I wonder if read is really thread safe with std::map or it is only possible to thread safly try{ ...find(..)->second...?
|
|
|||
|
|
|
The idea that calling That said, indeed, no matter what your minimum thread safety requirements are, calling the If a method has no Then again, a |
||||
|
|
|
If you're 100% sure that the map contains the key, then it is technically thread-safe if all other threads are also only invoking read-only methods on the map. Note however, that there is no The correct way to access the map in a thread-safe fashion is indeed:
As stated before, this only applies if all concurrent access is read-only. One way this can be guaranteed is to use a readers-writers lock. Note that in C++03, there is no mention of threads in the standard, so even that is not guaranteed to be thread-safe. Make sure to check your implementation's documentation. |
|||||||||||||
|
|
Standard library containers have no notion of thread safety. You have to synchronize concurrent read/write access to the container yourself.
|
|||||||||||||||
|
|
You are correct, Like others have said, the version of C++ before C++11 has no notion of threads or thread safety. However, you can feel safe using |
|||||||
|