C++智能指针(下)

简介: C++智能指针(下)

这里能解决的办法就是加锁:

https://legacy.cplusplus.com/reference/mutex/mutex/?kw=mutex

#pragma once
#include<iostream>
#include<thread>
#include<mutex>
using namespace std;
template<class T>
class Shared
{
public:
  //RALL
  Shared(T* ptr)
    :_ptr(ptr)
    ,_pcount(new int(1))
    ,_pmutex(new mutex)
  {}
  Shared(const Shared<T>& ptr)
    :_ptr(ptr._ptr)
    ,_pcount(ptr._pcount)
    ,_pmutex(ptr._pmutex)
  {
    _pmutex->lock();
    (*_pcount)++;
    _pmutex->unlock();
  }
  Shared<T>& operator=(const Shared<T>& ptr)
  {
    if (this->_ptr != ptr._ptr)
    {
      _pmutex->lock();
      if (--(*_pcount) == 0)//如果被赋值的对象是指向的资源是最后一个对象记得释放原来的空间
      {
        delete _ptr;
        delete _pcount;
      }
      _ptr = ptr._ptr;
      _pcount = ptr._pcount;
      _pmutex = ptr._pmutex;
      (*_pcount)++;
      _pmutex->unlock();
    }
    return *this;
  }
  ~Shared()
  {
    _pmutex->lock();
    bool flag = false;
    if (--(*_pcount) == 0)
    {
      delete _ptr;
      delete _pcount;
      flag = true;
    }
    _pmutex->unlock();
    if (flag == true)
      delete _pmutex;
  }
  int ppcount()//引用计数的值
  {
    return *_pcount;
  }
  //像指针一样
  T* operator->()
  {
    return _ptr;
  }
  T& operator*()
  {
    return *_ptr;
  }
  T& operator[](size_t pos)
  {
    return _ptr[pos];
  }
private:
  T* _ptr;
  int* _pcount;
  mutex* _pmutex;//锁的指针
};
void test()
{
  int n = 10000;
  Shared<int> sp1(new int(0));
  thread t1([&]()
    {
      for (int i = 0; i < n; i++)
      {
        Shared<int> sp2(sp1);
      }
    });
  thread t2([&]()
    {
      for (int i = 0; i < n; i++)
      {
        Shared<int> sp3(sp1);
      }
    });
  t1.join();
  t2.join();
  cout << sp1.ppcount() << endl;//正常来说,结果应该是1
}

shared_ptr是会自动保护引用计数安全的,但是并不会保护指向资源安全:

#include<iostream>
#include<thread>
#include<memory>
#include<mutex>
using namespace std;
struct Date
{
  int _year = 0;
  int _month = 0;
  int _day = 0;
};
void test()
{
  int n = 10000;
  shared_ptr<Date> sp1(new Date);
  mutex mtx;
  thread t1([&]()
    {
      for (int i = 0; i < n; i++)
      {
        shared_ptr<Date> sp2(sp1);
        //mtx.lock();
        sp2->_year++;
        sp2->_month++;
        sp2->_day++;
        //mtx.unlock();
      }
    });
  thread t2([&]()
    {
      for (int i = 0; i < n; i++)
      {
        shared_ptr<Date> sp3(sp1);
        //mtx.lock();
        sp3->_year++;
        sp3->_month++;
        sp3->_day++;
        //mtx.unlock();
      }
    });
  t1.join();
  t2.join();
  cout << sp1->_day << endl;
  cout << sp1->_month << endl;
  cout << sp1->_year << endl;
}
int main()
{
  test();
  return 0;
}

这个时候就要在资源进行++或者- - 操作的地方进行加锁和解锁了。(注释的地方就是)

循环引用问题

#include<iostream>
#include<memory>
using namespace std;
struct ListNode
{
  int val;
  shared_ptr<ListNode> _prev;
  shared_ptr<ListNode> _next;
  ~ListNode()
  {
    cout << "~ListNode()" << endl;
  }
};
int main()
{
  shared_ptr<ListNode>p1(new ListNode);
  shared_ptr<ListNode>p2(new ListNode);
  p1->_next = p2;
  p2->_prev = p1;
  return 0;
}

正常来说,p1p2应该被释放了才对,但是这里并没有,所以也就造成了内存泄露。

这是因为:

出了作用域p1,p2会销毁,然后剩下ListNode中的内容;

prev与next的销毁是ListNode的空间销毁了才会销毁,这里他们互相指着,没有任何一个引用计数可以变为0,所以无法释放内存。

weak_ptr

https://legacy.cplusplus.com/reference/memory/weak_ptr/?kw=weak_ptr

这个智能指针就是为了解决这个问题而诞生的。

#include<iostream>
#include<memory>
using namespace std;
struct ListNode
{
  int val;
  weak_ptr<ListNode> _prev;
  weak_ptr<ListNode> _next;
  ~ListNode()
  {
    cout << "~ListNode()" << endl;
  }
};
int main()
{
  shared_ptr<ListNode>p1(new ListNode);
  shared_ptr<ListNode>p2(new ListNode);
  p1->_next = p2;
  p2->_prev = p1;
  return 0;
}

这个是不参与资源管理,但是可以访问,也就是说不添加引用计数。

也就相当于上面模拟实现按的shared_ptr拷贝和赋值不增加引用计数,但是会检查指向的资源是否过期等等。

定制删除器

#include<iostream>
#include<memory>
#include<string>
using namespace std;
int main()
{
  shared_ptr<string> sp1(new string[10]);//这里开辟的类型与库中自带的释放类型不匹配
  return 0;
}

整个程序就崩溃掉了。

这个时候就需要一种叫做定制删除器,类似于仿函数。

在库中这一条最后一个参数就是定制删除器,传入的是一个对象。

template<class T>
struct Delete
{
  void operator()(const T* ptr)
  {
    delete[] ptr;
    std::cout << "delete [] " << ptr << std::endl;
  }
};
int main()
{
  std::shared_ptr<int> sp1(new int[10], Delete<int>());
  return 0;
}

C++11和boost中智能指针的关系

  1. C++ 98 中产生了第一个智能指针auto_ptr。
  2. C++ boost给出了更实用的scoped_ptr和shared_ptr和weak_ptr。
  3. C++ TR1,引入了shared_ptr等。不过注意的是TR1并不是标准版。
  4. C++ 11,引入了unique_ptr和shared_ptr和weak_ptr。需要注意的是unique_ptr对应boost的scoped_ptr。并且这些智能指针的实现原理是参考boost中的实现的。
相关文章
|
7天前
|
存储 程序员 C++
深入解析C++中的函数指针与`typedef`的妙用
本文深入解析了C++中的函数指针及其与`typedef`的结合使用。通过图示和代码示例,详细介绍了函数指针的基本概念、声明和使用方法,并展示了如何利用`typedef`简化复杂的函数指针声明,提升代码的可读性和可维护性。
33 0
|
1月前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
95 4
|
2月前
|
存储 安全 编译器
在 C++中,引用和指针的区别
在C++中,引用和指针都是用于间接访问对象的工具,但它们有显著区别。引用是对象的别名,必须在定义时初始化且不可重新绑定;指针是一个变量,可以指向不同对象,也可为空。引用更安全,指针更灵活。
|
2月前
|
存储 C++
c++的指针完整教程
本文提供了一个全面的C++指针教程,包括指针的声明与初始化、访问指针指向的值、指针运算、指针与函数的关系、动态内存分配,以及不同类型指针(如一级指针、二级指针、整型指针、字符指针、数组指针、函数指针、成员指针、void指针)的介绍,还提到了不同位数机器上指针大小的差异。
62 1
|
2月前
|
存储 编译器 C语言
C++入门2——类与对象1(类的定义和this指针)
C++入门2——类与对象1(类的定义和this指针)
45 2
|
2月前
|
存储 安全 编译器
【C++】C++特性揭秘:引用与内联函数 | auto关键字与for循环 | 指针空值(一)
【C++】C++特性揭秘:引用与内联函数 | auto关键字与for循环 | 指针空值
|
2月前
|
存储 C++ 索引
C++函数指针详解
【10月更文挑战第3天】本文介绍了C++中的函数指针概念、定义与应用。函数指针是一种指向函数的特殊指针,其类型取决于函数的返回值与参数类型。定义函数指针需指定返回类型和参数列表,如 `int (*funcPtr)(int, int);`。通过赋值函数名给指针,即可调用该函数,支持两种调用格式:`(*funcPtr)(参数)` 和 `funcPtr(参数)`。函数指针还可作为参数传递给其他函数,增强程序灵活性。此外,也可创建函数指针数组,存储多个函数指针。
|
3月前
|
编译器 C++
【C++核心】指针和引用案例详解
这篇文章详细讲解了C++中指针和引用的概念、使用场景和操作技巧,包括指针的定义、指针与数组、指针与函数的关系,以及引用的基本使用、注意事项和作为函数参数和返回值的用法。
56 3
|
2月前
|
存储 编译器 程序员
【C++】C++特性揭秘:引用与内联函数 | auto关键字与for循环 | 指针空值(二)
【C++】C++特性揭秘:引用与内联函数 | auto关键字与for循环 | 指针空值
|
3月前
|
C++
C++(十八)Smart Pointer 智能指针简介
智能指针是C++中用于管理动态分配内存的一种机制,通过自动释放不再使用的内存来防止内存泄漏。`auto_ptr`是早期的一种实现,但已被`shared_ptr`和`weak_ptr`取代。这些智能指针基于RAII(Resource Acquisition Is Initialization)原则,即资源获取即初始化。RAII确保对象在其生命周期结束时自动释放资源。通过重载`*`和`-&gt;`运算符,可以方便地访问和操作智能指针所指向的对象。