请看下面一段代码
#include<stdio.h>
#include<iostream>
#include <string.h>
#include <memory>
#include <mutex>
#include <thread>
using namespace std;
shared_ptr<long> global_instance = make_shared<long>(0);
std::mutex g_i_mutex;
void thread_fcn()
{
//std::lock_guard<std::mutex> lock(g_i_mutex);
shared_ptr<long> local = global_instance; // thread-safe
for(int i = 0; i < 100000000; i++)
{
//*global_instance = *global_instance + 1;
*local = *local + 1;
}
}
//g++ -std=c++11 thead_01.cpp -lpthread
int main(int argc, char** argv)
{
thread thread1(thread_fcn);
thread thread2(thread_fcn);
thread1.join();
thread2.join();
cout << "*global_instance is " << *global_instance << endl;
return 0;
}
思考10秒
*global_instance is 200000000
画外音:
执行结果 不是预期结果,肯定不是线程安全的。
为什么还说内置安全的。
shared_ptr
objects offer the same level of thread safety as built-in types
查看Effective_Modern_C++.
意思是说:
画外音
智能指针有2个成员,一个是引用计数是原子的,另外一个原始指针 不是
综合来说 就不是
继续查看文档shared_ptr_thread_safety
shared_ptr<int> p(new int(42));
Code Example 4. Reading a shared_ptr
from two threads
// thread A
shared_ptr<int> p2(p); // reads p
// thread B
shared_ptr<int> p3(p); // OK, multiple reads are safe
shared_ptr
instances from two threads 引用计数改变 原子操作 安全// thread A
p.reset(new int(1912)); // writes p
// thread B
p2.reset(); // OK, writes p2
shared_ptr
from two threads// thread A
p = p3; // reads p3, writes p
// thread B
p3.reset(); // writes p3; undefined, simultaneous read/write
shared_ptr
from two threads// thread A
p3 = p2; // reads p2, writes p3
// thread B
// p2 goes out of scope: undefined, the destructor is considered a "write access"
shared_ptr
from two threads// thread A
p3.reset(new int(1));
// thread B
p3.reset(new int(2)); // undefined, multiple writes
Starting with Boost release 1.33.0, shared_ptr
uses a lock-free implementation on most common platforms.
结论:多个线程同时读同一个shared_ptr对象是线程安全的,
但是如果是多个线程对同一个shared_ptr对象进行读和写,则需要加锁。
这里举个例子:怎么多线程调度执行顺序的不确定性。
为什么多线程读写 shared_ptr 要加锁?
以下内容,摘自陈硕的 http://blog.csdn.net/solstice/article/details/8547547
1:shared_ptr 的数据结构
shared_ptr 是引用计数型(reference counting)智能指针,几乎所有的实现都采用在堆(heap)上放个计数值(count)的办法(除此之外理论上还有用循环链表的办法,不过没有实例)。
具体来说,shared_ptr<Foo> 包含两个成员,一个是指向 Foo 的指针 ptr,另一个是 ref_count 指针(其类型不一定是原始指针,有可能是 class 类型,但不影响这里的讨论),指向堆上的 ref_count 对象。ref_count 对象有多个成员,具体的数据结构如图 1 所示,其中 deleter 和 allocator 是可选的。
图 1:shared_ptr 的数据结构。
为了简化并突出重点,后文只画出 use_count 的值:
以上是 shared_ptr<Foo> x(new Foo); 对应的内存数据结构。
如果再执行 shared_ptr<Foo> y = x; 那么对应的数据结构如下。
但是 y=x 涉及两个成员的复制,这两步拷贝不会同时(原子)发生。
步骤1和步骤2的先后顺序跟实现相关(因此步骤 2 里没有画出 y.ptr 的指向),
我见过的都是先1后2。
既然 y=x 有两个步骤,如果没有 mutex 保护,那么在多线程里就有 race condition。
2:多线程无保护读写 shared_ptr 可能出现的 race condition
考虑一个简单的场景,有 3 个 shared_ptr<Foo> 对象 x、g、n:
shared_ptr<Foo> g(new Foo1); // 线程之间共享的 shared_ptr
shared_ptr<Foo> x; // 线程 A 的局部变量
shared_ptr<Foo> n(new Foo2); // 线程 B 的局部变量
-------------------------------------------
线程 A
x = g; (即 read g) //代码1 :赋值指针,赋值 引用计数
-------------------------------------------
线程 B
g = n;//代码2 :动作A 清空原来G指向Foo1, 动作B 然后重新赋值 Foo2
测试场景:
线程A
智能指针x 读取Foo1,然后还重置Foo1计数。
线程 B:
销毁了Foo1
线程A
重置计数是,foo1已经被销毁。
一开始,各安其事:
线程 A 执行 x = g; (即 read g),以下完成了步骤 1,还没来及执行步骤 2。这时切换到了 B 线程。
同时编程 B 执行 g = n; (即 write g),两个步骤一起完成了。
先是步骤 1:
这时 Foo1 对象已经销毁,x.ptr 成了空悬指针!
最后回到线程 A,完成步骤 2:
多线程无保护地读写 g,造成了“x 是空悬指针”的后果。
这正是多线程读写同一个 shared_ptr 必须加锁的原因
查看代码
https://www.boost.org/doc/libs/1_32_0/boost/detail/shared_count.hpp
template<class T>
class shared_ptr
{
T * px; // contained pointer
boost::detail::shared_count pn; // reference counter ,
}
class shared_count
{
private:
sp_counted_base * pi_;
}
思考与行动:
1。为什么用一个类来管理另外一个指针呢
提示:
聚合关系图:
组合关系图:
2. 共享指针缺点
提示: