由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 一般thread-safe access
相关主题
怎么练习multi-threading,平常工作都是用Java框架thread safe or not???
thread, semaphore, 问题。[合集] thread safe or not???
Question on synchronization between processes这个函数有问题吗?
多线程编程前景如何?thread-safe singleton implementation
c++下如何实现多线程?class的Init()和Reset()需要考虑thread-safe吗?
MFC里如何判断一个线程处在Wait的状态?golang 一个thread safe singleton问题
写thread safe程序现在也是程序员必须要掌握的了吧关于thread的stack
pthread mutex能不能用与thread和process之间问个java String问题
相关话题的讨论汇总
话题: c++话题: thread话题: safe话题: access话题: 有类
进入Programming版参与讨论
1 (共1页)
s*****g
发帖数: 323
1
thread-safe access to public member functions and variables在C++里是怎么写的?
我记得在java里,好像就是加一个synchronized.
在C++里,是不是也有类似的呢?
a****l
发帖数: 68
2
a****l
发帖数: 68
3
是不是要用mutex保护起来?
W*Z
发帖数: 10
4
I don't think there are any key words in C++ to support thread safe, however
, there are design and implementation rules to enforce thread safe while
writing C++ codes. It is not an easy topic, search online for various
discussions.
I think the key would be what is a valid state of an object and how to keep
it valid all the time.

【在 a****l 的大作中提到】
: 是不是要用mutex保护起来?
1 (共1页)
进入Programming版参与讨论
相关主题
问个java String问题c++下如何实现多线程?
C++ Q 99-102 (转载)MFC里如何判断一个线程处在Wait的状态?
为什么java要用setter和getter写thread safe程序现在也是程序员必须要掌握的了吧
坛子里有人搞HBase的吗?pthread mutex能不能用与thread和process之间
怎么练习multi-threading,平常工作都是用Java框架thread safe or not???
thread, semaphore, 问题。[合集] thread safe or not???
Question on synchronization between processes这个函数有问题吗?
多线程编程前景如何?thread-safe singleton implementation
相关话题的讨论汇总
话题: c++话题: thread话题: safe话题: access话题: 有类