Synchronized in java can guarantee safety of thread. What about C++?
Thank you!
|
Synchronized in java can guarantee safety of thread. What about C++? Thank you! |
|||||||||||||||
|
|
Use the following in C++0x:
Use boost if you don't have a C++0x compiler yet. |
|||||
|
|
|
There is no keyword in C++03 equivalent to |
||||
|
|
|
C++ does not have built-in threading or synchronization (yet), you have to use libraries for that. |
|||
|
|
|
You can also have a look at: A "synchronized" statement for C++ like in Java With this method you can use synchronized like in Java. |
|||
|
|