常用的c++特性-->day02

c++11新特性

  • 可调用对象
    • 案例
    • 分析
  • 可调用对象包装器
    • 语法
    • 案例
    • 可调用对象包装器作为函数参数
    • 补充:类型转换运算符
      • 案例
  • 可调用对象绑定器
    • 语法格式
    • 绑定非类成员函数/变量
      • 案例1
      • 案例2
      • 案例3
      • 案例4
    • 绑定类成员函数/变量
  • lambda表达式
    • 捕获列表
    • 案例1
    • 返回值
    • 案例2 --> 包装器绑定器
  • 左值和右值
    • 右值引用
      • 书写规则
    • 案例
    • 右值引用的作用
      • 案例分析
      • 案例分析2
    • &&注意事项
  • 转移和完美转发
    • move资源的转移
    • forward
      • 函数原型
      • 案例
  • 共享智能指针
    • shared_ptr的初始化
      • 通过构造函数初始化
      • 通过拷贝函数进行初始化
      • 移动构造函数初始化
      • 使用make_shared
      • 通过reset方法初始化
      • 获取原始指针
    • shared_ptr的使用
    • 指定删除器
      • 指定删除器简单案例
      • 指定删除器复杂案例
    • c++自带的删除器
      • 自动删除简单案例
      • 自动删除复杂案例
  • 独占智能指针
    • unique_ptr的初始化
    • unique_ptr删除器
    • 补充
  • 弱引用智能指针
    • weak_ptr初始化
    • use_count()
    • expired()
    • lock()
    • reset()
  • 共享智能指针的注意事项
    • 不能使用一个原始地址初始化多个共享智能指针
    • 函数不能返回管理this的共享智能指针对象
      • 解决方案
    • 共享智能指针不能循环引用

可调用对象

案例

#include <iostream>
#include <string>
#include <vector>
using namespace std;using funcptr = void(*)(int, string);int print(int a, double b)
{cout << a << ", " << b << endl;return 0;
}
// 定义函数指针
int (*func)(int, double) = &print;struct Test
{int m_id;// ()操作符重载void operator()(string msg){cout << "msg: " << msg << endl;}//属于类的static void world(int a, string b){cout << "name: " << b << ", age: " << a << endl;}//属于对象void hello(int a, string b){cout << "name: " << b << ", age: " << a << endl;}// 将类对象转换为函数指针 ----> 指定world被调用operator funcptr(){//return hello;//errreturn world;}
};int main(void)
{//函数指针func(1, 2);//仿函数Test t;t("hello world");Test tt;// 对象转换为函数指针, 并调用tt(19, "Monkey D. Luffy");//-----------------------------------------------------------------------------//类的函数指针//左侧是不属于类的函数指针,右侧是属于类的函数指针,hello是属于对象的//funcptr f = Test::hello;//err//函数名就是地址 下面两个写法都对funcptr f1 = Test::world;f1(10, "冬狮郎");funcptr f2 = &Test::world;f2(0, "黑崎一护");using fptr = void(Test::*)(int, string);fptr f3 = &Test::hello;Test ttt;(ttt.*f3)(2, "碎蜂");//---------------------------------------------------------------//类的成员指针(变量)using ptr1 = int Test::*;ptr1 pt = &Test::m_id;ttt.*pt = 1008611;cout << "m_id:" << ttt.m_id << endl;return 0;
}

在这里插入图片描述

分析

#include <iostream>
#include <string>
#include <vector>
using namespace std;using func_ptr = void(*)(int, string);
struct Test
{static void print(int a, string b){cout << "name: " << b << ", age: " << a << endl;}// 将类对象转换为函数指针operator func_ptr(){return print;}
};int main(void)
{Test t;// 对象转换为函数指针, 并调用t(19, "Monkey D. Luffy");return 0;
}

类型转换语法:

operator target_type()
{return expression;
}

在这段代码里,target_type 是目标类型,表示希望对象转换成的类型;expression 是返回的值,通常是目标类型的实例或者符合目标类型的值

可调用对象包装器

std::function是可调用对象的包装器。它是一个类模板,可以容纳除了类(非静态)成员(函数)指针之外的所有可调用对象。通过指定它的模板参数,它可以用统一的方式处理函数、函数对象、函数指针,并允许保存和延迟执行它们。

语法

#include <functional>
std::function<返回值类型(参数类型列表)> diy_name = 可调用对象;

=后面接可调用对象
function包装函数—>成为可调用对象

案例

#include <iostream>
#include <string>
#include <vector>
#include <functional>
using namespace std;using funcptr = void(*)(int, string);int print(int a, double b)
{cout << a << ", " << b << endl;return 0;
}
// 定义函数指针
int (*func)(int, double) = &print;struct Test
{int m_id;// ()操作符重载 >>> 仿函数void operator()(string msg){cout << "msg: " << msg << endl;}//属于类的static void world(int a, string b){cout << "name: " << b << ", age: " << a << endl;}//属于对象void hello(int a, string b){cout << "name: " << b << ", age: " << a << endl;}// 将类对象转换为函数指针 ----> 指定world被调用operator funcptr(){//return hello;//errreturn world;}
};int main(void)
{//1、函数指针func(1, 2.2);//2、仿函数Test t;t("hello world");Test tt;//对象转换为函数指针, 并调用 >>>>>>>>>>>>>>>>>>>> operator 对应函数tt(19, "Monkey D. Luffy");//3、类的函数指针//左侧是不属于类的函数指针,右侧是属于类的函数指针//funcptr f = Test::hello;//err//函数名就是地址 下面两个写法都对funcptr f1 = Test::world;f1(10, "冬狮郎");funcptr f2 = &Test::world;f2(0, "黑崎一护");using fptr = void(Test::*)(int, string);fptr f3 = &Test::hello;Test ttt;(ttt.*f3)(2, "碎蜂");//4、类的成员指针(变量)using ptr1 = int Test::*;ptr1 pt = &Test::m_id;ttt.*pt = 1008611;cout << "m_id:" << ttt.m_id << endl;//*********************************************************************************************cout << endl << endl << endl;
//*********************************************************************************************//1、包装普通函数function<void(int, double)>f4 = print;f4(1, 2.2);//2、包装静态函数function<void(int, string)>f5 = Test::world;f5(5, "蓝染");//3、包装仿函数Test ta;function<void(string)>f6 = ta;f6("浦原喜助");//4、包装转换为函数指针的对象Test tb;function<void(int, string)>f7 = tb;f7(11, "更木剑八");return 0;
}

在这里插入图片描述

可调用对象包装器作为函数参数

#include <iostream>
#include <string>
#include <vector>
#include <functional>
using namespace std;using funcptr = void(*)(int, string);int print(int a, double b)
{cout << a << ", " << b << endl;return 0;
}
// 定义函数指针
int (*func)(int, double) = &print;struct Test
{int m_id;// ()操作符重载 >>> 仿函数void operator()(string msg){cout << "msg: " << msg << endl;}//属于类的static void world(int a, string b){cout << "name: " << b << ", age: " << a << endl;}//属于对象void hello(int a, string b){cout << "name: " << b << ", age: " << a << endl;}// 将类对象转换为函数指针 ----> 指定world被调用operator funcptr(){//return hello;//errreturn world;}
};class A
{
public:// 构造函数参数是一个包装器对象A(const function<void(int,string)>& f) : callback(f){}void notify(int id, string name){callback(id, name); // 调用通过构造函数得到的函数指针}
private:function<void(int,string)> callback;
};int main(void)
{//1、函数指针func(1, 2.2);//2、仿函数Test t;t("hello world");//2.5、是一个可被转换为函数指针的类对象Test tt;//对象转换为函数指针, 并调用 >>>>>>>>>>>>>>>>>>>> operator 对应函数tt(19, "Monkey D. Luffy");//3、类的函数指针//左侧是不属于类的函数指针,右侧是属于类的函数指针//funcptr f = Test::hello;//err//函数名就是地址 下面两个写法都对funcptr f1 = Test::world;f1(10, "冬狮郎");funcptr f2 = &Test::world;f2(0, "黑崎一护");using fptr = void(Test::*)(int, string);fptr f3 = &Test::hello;Test ttt;(ttt.*f3)(2, "碎蜂");//4、类的成员指针(变量)using ptr1 = int Test::*;ptr1 pt = &Test::m_id;ttt.*pt = 1008611;cout << "m_id:" << ttt.m_id << endl;//*********************************************************************************************cout << endl << endl;
//*********************************************************************************************//1、包装普通函数function<void(int, double)>f4 = print;f4(1, 2.2);//2、包装静态函数function<void(int, string)>f5 = Test::world;f5(5, "蓝染");//3、包装仿函数Test ta;function<void(string)>f6 = ta;f6("浦原喜助");//4、包装转换为函数指针的对象Test tb;function<void(int, string)>f7 = tb;f7(11, "更木剑八");//*********************************************************************************************cout << endl << endl;
//*********************************************************************************************//可调用函数包装器作为函数参数A aa(Test::world);aa.notify(12, "涅茧利");Test tc;A bb(tc);bb.notify(7, "狛村左阵");return 0;
}

在这里插入图片描述
Test 类定义了一个 operator funcptr() 转换函数,它的作用是将 Test 类的对象转换为 funcptr 类型的函数指针(即 void(*)(int, string))。当将 tb 传递给 f7 时,实际上调用了这个转换操作符。

补充:类型转换运算符

operator 目标类型()
{// 转换逻辑
}

案例

#include <iostream>
using namespace std;class Box {
public:Box(double v) : volume(v) {}// 类型转换运算符:将 Box 对象转换为 double 类型operator double() const {return volume;}private:double volume;
};int main() {Box b(100.0);double volume = b; // 隐式调用 operator double()cout << "Volume: " << volume << endl;return 0;
}

在这里插入图片描述

可调用对象绑定器

可调用对象绑定器:
1、将可调用对象与其参数一起绑定成一个仿函数
2、将多元(参数个数为n,n>1)可调用对象转换为一元或者(n-1)元可调用对象,即只绑定部分参数。

语法格式

// 绑定非类成员函数/变量
auto f = std::bind(可调用对象地址, 绑定的参数/占位符); //>>>>>>>>>>>>>>>>静态函数可以使用这种方式
// 绑定类成员函/变量
auto f = std::bind(类函数/成员地址, 类实例对象地址, 绑定的参数/占位符);// >>>>>>>>>>>>>>>>>>>>绑定的是成员第三个参数可以省略

绑定非类成员函数/变量

案例1

#include <iostream>
#include <functional>
using namespace std;
//通过bind得到第二个参数
void callFunc(int x, const function<void(int)>& f)
{if (x % 2 == 0){f(x);}
}
void output(int x)
{cout << x << " ";
}void output_add(int x)
{cout << x + 10 << " ";
}int main(void)
{// 使用绑定器绑定可调用对象和参数auto f1 = bind(output, placeholders::_1);// >>>>>> f1类型std::function<void(int)>f1(100);cout << endl;for (int i = 0; i < 10; ++i){callFunc(i, f1);}cout << endl;auto f2 = bind(output_add, placeholders::_1);// >>>>>>> f2类型std::function<void(int)>for (int i = 0; i < 10; ++i){callFunc(i, f2);}cout << endl;return 0;
}

在上面的程序中,使用了std::bind绑定器,在函数外部通过绑定不同的函数,控制了最后执行的结果。std::bind绑定器返回的是一个仿函数类型,得到的返回值可以直接赋值给一个std::function,在使用的时候我们并不需要关心绑定器的返回值类型,使用auto进行自动类型推导就可以了。
placeholders::_1是一个占位符,代表这个位置将在函数调用时被传入的第一个参数所替代。同样还有其他的占位符placeholders::_2、placeholders::_3、placeholders::_4、placeholders::_5等……
在这里插入图片描述

案例2

#include <iostream>
#include <functional>
using namespace std;void output(int x, int y)
{cout << x << " " << y << endl;
}int main(void)
{// 使用绑定器绑定可调用对象和参数, 并调用得到的仿函数bind(output, 1, 2)();bind(output, placeholders::_1, 2)(10);bind(output, 2, placeholders::_1)(10);// error, 调用时没有第二个参数// bind(output, 2, placeholders::_2)(10);// 调用时第一个参数10被吞掉了,没有被使用bind(output, 2, placeholders::_2)(10, 20);bind(output, placeholders::_1, placeholders::_2)(10, 20);bind(output, placeholders::_2, placeholders::_1)(10, 20);return 0;
}

在这里插入图片描述

案例3

#include <iostream>
#include <functional>
using namespace std;void callFunc(int x, int y, const function<void(int, int)>& f)
{if (x % 2 == 0){f(x, y);}
}void output_add(int x, int y)
{cout << "x: " << x << ",y: " << y <<",x+y: " << x + y << endl;
}int main(void)
{for (int i = 0; i < 10; ++i){//bind绑定固定的实参函数调用的时候是不会生效的//如果是占位符是可以生效的//绑定的是output_add函数 i+100 i+200是为这个函数提供的参数auto f1 = bind(output_add, i + 100, i + 200);// >>>>>> f1被推导为function<void<int,int>>类型callFunc(i, i, f1);cout << endl;auto f2 = bind(output_add, placeholders::_1, placeholders::_2);callFunc(i, i, f2);}return 0;
}

在这里插入图片描述

案例4

#include <iostream>
#include <functional>
using namespace std;void callFunc(int x, int y, const function<void(int, int)>& f)
{if (x % 2 == 0){f(x, y);}
}void output_add(int x, int y)
{cout << "x: " << x << ",y: " << y <<",x+y: " << x + y << endl;
}int main(void)
{for (int i = 0; i < 10; ++i){callFunc(i, i, bind(output_add, placeholders::_1, placeholders::_2));}return 0;
}

在这里插入图片描述

绑定类成员函数/变量

#include <iostream>
#include <functional>
using namespace std;class Test
{
public:void output(int x, int y){cout << "x: " << x << ", y: " << y << endl;}int m_number = 100;
};int main(void)
{Test t;// 绑定类成员函数function<void(int, int)> f1 = bind(&Test::output, &t, placeholders::_1, placeholders::_2);auto f2 = bind(&Test::output, &t, 14, placeholders::_1);// 绑定类成员变量(公共)//f3可读可写 >>>>>>>>> &function<int& (void)> f3 = bind(&Test::m_number, &t);auto f4 = bind(&Test::m_number, &t);// >>>>>>>>f3和f4类型不一样// 调用f1(520, 1314);f2(38);cout << "f3():" << f3() << endl;f3() = 2333;cout << "t.m_number: " << t.m_number << endl;f4() = 3332;cout << "t.m_number: " << t.m_number << endl;return 0;
}

在这里插入图片描述

使用绑定器绑定的类成员变量m_number得到的仿函数被存储到了类型为function<int&(void)>的包装器对象f3中,并且可以在需要的时候修改这个成员。其中int是绑定的类成员的类型,并且允许修改绑定的变量,因此需要指定为变量的引用,由于没有参数因此参数列表指定为void。
使用绑定器绑定的类成员变量m_number得到的仿函数被存储到了类型为function<int&(void)>的包装器对象f3中,并且可以在需要的时候修改这个成员。其中int是绑定的类成员的类型,并且允许修改绑定的变量,因此需要指定为变量的引用,由于没有参数因此参数列表指定为void。

lambda表达式

lambda表达式定义了一个匿名函数,并且可以捕获一定范围内的变量。lambda表达式的语法形式简单归纳如下:

[capture](params) opt -> ret {body;};

其中capture是捕获列表,params是参数列表,opt是函数选项,ret是返回值类型,body是函数体。
捕获列表[]: 捕获一定范围内的变量
参数列表(): 和普通函数的参数列表一样,如果没有参数参数列表可以省略不写。

auto f = [](){return 1;}	// 没有参数, 参数列表为空
auto f = []{return 1;}		// 没有参数, 参数列表省略不写

opt 选项, 不需要可以省略
mutable: 可以修改按值传递进来的拷贝(注意是能修改拷贝,而不是值本身)
exception: 指定函数抛出的异常,如抛出整数类型的异常,可以使用throw();
返回值类型:在C++11中,lambda表达式的返回值是通过返回值后置语法来定义的。
函数体:函数的实现,这部分不能省略,但函数体可以为空。

捕获列表

[] - 不捕捉任何变量
[&] - 捕获外部作用域中所有变量, 并作为引用在函数体内使用 (按引用捕获)
[=] - 捕获外部作用域中所有变量, 并作为副本在函数体内使用 (按值捕获)
拷贝的副本在匿名函数体内部是只读的
[=, &foo] - 按值捕获外部作用域中所有变量, 并按照引用捕获外部变量 foo
[bar] - 按值捕获 bar 变量, 同时不捕获其他变量
[&bar] - 按引用捕获 bar 变量, 同时不捕获其他变量
[this] - 捕获当前类中的this指针
让lambda表达式拥有和当前类成员函数同样的访问权限
如果已经使用了 & 或者 =, 默认添加此选项

案例1

#include <iostream>
#include <functional>
using namespace std;void func(int x, int y)
{int a = 9;int b = 6;//由于是=上面的b和下面的b是存在于不同内存的[=, &x]()mutable{int c = a;int d = x;d = d + 100;b = b + 10;// >>>>>>> mutable是为了这里的b服务的cout << "c:" << c << endl;cout << "d:" << d << endl;cout << "b:" << b << endl;}();cout << "b:" << b << endl;
}int main()
{func(1000,1000);return 0;
}

在这里插入图片描述

返回值

一般情况下,不指定lambda表达式的返回值,编译器会根据return语句自动推导返回值的类型,但需要注意的是labmda表达式不能通过列表初始化自动推导出返回值类型。

// ok,可以自动推导出返回值类型
auto f = [](int i)
{return i;
}// error,不能推导出返回值类型
auto f1 = []()
{return {1, 2};	// 基于列表初始化推导返回值,错误
}

案例2 --> 包装器绑定器

#include <iostream>
#include <functional>
using namespace std;void func(int x, int y)
{int a;int b;using ptr = void(*)(int);//捕获列表没有任何参数 >>> 可以被看作为函数指针ptr p1 = [](int x){cout << "x: " << x << endl;};p1(11);// >>>>>>>>>>>>>>>>>>> 11作为参数传入到lambda表达式中//err//ptr p2 = [=](int x)//{//	cout << "x: " << x << endl;//};//p2(11);function<void(int)> fff = [=](int x){cout << "x: " << x << endl;};fff(11);//由于绑定器绑定是仿函数//auto推导是仿函数//包装器推导是包装器对象function<void(int)> ffff = bind([=](int x){cout << "x: " << x << endl;}, placeholders::_1);ffff(11);}int main()
{func(10, 20);return 0;
}

左值和右值

左值是指存储在内存中、有明确存储地址(可取地址)的数据
右值是指可以提供数据值的数据(不可取地址)

右值引用

书写规则

#include <iostream>
#include <functional>
using namespace std;int main()
{//1、左值int num = 9;//2、左值引用int& a = num;//右值//3、右值引用int&& b = 8;//4、常量右值引用const int&& d = 6;//const int&& e = b;//err//int&& f = b;//err//5、常量左值引用const int& c = num;//常量的左值引用可以使用常量的右值引用进行初始化const int& f = b;const int& g = d;
}

案例

#include <iostream>
using namespace std;int&& value = 520;
class Test
{
public:Test(){cout << "construct: my name is jerry" << endl;}Test(const Test& a){cout << "copy construct: my name is tom" << endl;}
};Test getObj()
{return Test();
}int main()
{int a1;int &&a2 = a1;        // errorTest& t = getObj();   // errorTest && t = getObj();const Test& tt = getObj();return 0;
}

在这里插入图片描述
在上面的例子中int&& value = 520;里面520是纯右值,value是对字面量520这个右值的引用。
在int &&a2 = a1;中a1虽然写在了=右边,但是它仍然是一个左值,使用左值初始化一个右值引用类型是不合法的。
在Test& t = getObj()这句代码中语法是错误的,右值不能给普通的左值引用赋值。
在Test && t = getObj();中getObj()返回的临时对象被称之为将亡值,t是这个将亡值的右值引用。
const Test& t = getObj()这句代码的语法是正确的,常量左值引用是一个万能引用类型,它可以接受左值、右值、常量左值和常量右值。

右值引用的作用

右值引用延迟内存的生命周期
在C++中在进行对象赋值操作的时候,很多情况下会发生对象之间的深拷贝,如果堆内存很大,这个拷贝的代价也就非常大,在某些情况下,如果想要避免对象的深拷贝,就可以使用右值引用进行性能的优化。

案例分析

vs2019

#include <iostream>
using namespace std;class Test
{
public:Test() : m_num(new int(100)){cout << "construct: my name is jerry" << endl; cout << "m_num: " << m_num << endl;}Test(const Test& a) : m_num(new int(*a.m_num)){cout << "copy construct: my name is tom" << endl;}~Test(){cout << "destruct Test class ..." << endl;delete m_num;}int* m_num;
};Test getObj()
{Test t;return t;
}int main()
{Test t = getObj();
}

在这里插入图片描述
上述是消耗资源的因为getObj调用的时候只是创建了一个t对象然后返回,拷贝构造析构都是需要消耗资源的,因此需要让t对象直接使用getObj,因此用右值引用
优化上面代码(vs2019下):

#include <iostream>
using namespace std;class Test
{
public:Test() : m_num(new int(100)){cout << "construct: my name is jerry" << endl; cout << "m_num: " << m_num << endl;}Test(const Test& a) : m_num(new int(*a.m_num)){cout << "copy construct: my name is tom" << endl;}//浅拷贝//移动构造函数 -> 复用其它对象中的资源(堆内存)Test(Test&& a) :m_num(a.m_num){a.m_num = nullptr;cout << "move construct..." << endl;}~Test(){cout << "destruct Test class ..." << endl;delete m_num;}int* m_num;
};Test getObj()
{Test t;return t;
}int main()
{Test t = getObj();cout << "t.m_num: " << *t.m_num << endl;return 0;
};

右值引用具有移动语义,移动语义可以将资源(堆、系统对象等)通过浅拷贝从一个对象转移到另一个对象这样就能减少不必要的临时对象的创建、拷贝以及销毁,可以大幅提高C++应用程序的性能。

执行结果:

construct: my name is jerry
move construct: my name is sunny
destruct Test class ...
t.m_num: 100
destruct Test class ...

通过修改,在上面的代码给Test类添加了移动构造函数(参数为右值引用类型),这样在进行Test t = getObj();操作的时候并没有调用拷贝构造函数进行深拷贝,而是调用了移动构造函数,在这个函数中只是进行了浅拷贝,没有对临时对象进行深拷贝,提高了性能。

在测试程序中getObj()的返回值就是一个将亡值,也就是说是一个右值,在进行赋值操作的时候如果=右边是一个右值,那么移动构造函数就会被调用。移动构造中使用了右值引用,会将临时对象中的堆内存地址的所有权转移给对象t,这块内存被成功续命,因此在t对象中还可以继续使用这块内存。

案例分析2

右值引用分为:普通右值和将亡右值

#include <iostream>
using namespace std;class Test
{
public:Test() : m_num(new int(100)){cout << "construct: my name is jerry" << endl; cout << "m_num: " << m_num << endl;}Test(const Test& a) : m_num(new int(*a.m_num)){cout << "copy construct: my name is tom" << endl;}//浅拷贝//移动构造函数 -> 复用其它对象中的资源(堆内存)Test(Test&& a) :m_num(a.m_num){a.m_num = nullptr;cout << "move construct: my name is sunny" << endl;}~Test(){cout << "destruct Test class ..." << endl;delete m_num;}int* m_num;
};Test getObj1()
{Test t;return t;
}//返回的是临时对象是不能够被取地址的
Test getObj2()
{return Test();
}//将临时对象转换为右值引用
Test&& getObj3()
{return Test();
}int main()
{//两种方法 >>>>>> 要求右侧是临时对象 Test t = getObj1();// >>>>>>>>>>>> 返回临时对象调用移动构造函数Test&& t1 = getObj1();cout << "t.m_num: " << *t1.m_num << endl;//复用了即将释放对象的所有资源Test&& t2 = getObj2();// >>>>>>>>>>>>> 没有使用移动构造函数 要求右侧是一个临时不能取地址的对象cout << "t.m_num: " << *t2.m_num << endl;return 0;
};

解释移动构造函数:

    Test(Test&& a) :m_num(a.m_num){a.m_num = nullptr;cout << "move construct: my name is sunny" << endl;}

源对象 a 不再拥有指向原始资源的指针。
在源对象析构时,它不会错误地释放已经转移给目标对象的资源。
目标对象在析构时将正确地释放它所接管的资源

&&注意事项

template<typename T>
void f(T&& param);
void f1(const T&& param);
f(10); 	//右值引用
int x = 10;
f(x); //左值引用
f1(x);	// error, x是左值
f1(10); // ok, 10是右值

第4行中,对于f(10)来说传入的实参10是右值,因此T&&表示右值引用
第6行中,对于f(x)来说传入的实参是x是左值,因此T&&表示左值引用
第7行中,f1(x)的参数是const T&&不是未定引用类型,不需要推导,本身就表示一个右值引用

int main()
{int x = 520, y = 1314;auto&& v1 = x;auto&& v2 = 250;decltype(x)&& v3 = y;   // errorcout << "v1: " << v1 << ", v2: " << v2 << endl;return 0;
};

第4行中 auto&&表示一个整形的左值引用
第5行中 auto&&表示一个整形的右值引用
第6行中decltype(x)&&等价于int&&是一个右值引用不是未定引用类型,y是一个左值,不能使用左值初始化一个右值引用类型。

由于上述代码中存在T&&或者auto&&这种未定引用类型,当它作为参数时,有可能被一个右值引用初始化,也有可能被一个左值引用初始化,在进行类型推导时右值引用类型(&&)会发生变化,这种变化被称为引用折叠。在C++11中引用折叠的规则如下:
通过右值推导 T&& 或者 auto&& 得到的是一个右值引用类型
通过非右值(右值引用、左值、左值引用、常量右值引用、常量左值引用)推导 T&& 或者 auto&& 得到的是一个左值引用类型

int&& a1 = 5;
auto&& bb = a1;
auto&& bb1 = 5;int a2 = 5;
int &a3 = a2;
auto&& cc = a3;
auto&& cc1 = a2;const int& s1 = 100;
const int&& s2 = 100;
auto&& dd = s1;
auto&& ee = s2;const auto&& x = 5;

第2行:a1为右值引用,推导出的bb为左值引用类型
第3行:5为右值,推导出的bb1为右值引用类型
第7行:a3为左值引用,推导出的cc为左值引用类型
第8行:a2为左值,推导出的cc1为左值引用类型
第12行:s1为常量左值引用,推导出的dd为常量左值引用类型
第13行:s2为常量右值引用,推导出的ee为常量左值引用类型
第15行:x为右值引用,不需要推导,只能通过右值初始化

#include <iostream>
using namespace std;void printValue(int &i)
{cout << "l-value: " << i << endl;
}void printValue(int &&i)
{cout << "r-value: " << i << endl;
}void forward(int &&k)
{printValue(k);
}int main()
{int i = 520;printValue(i);printValue(1314);forward(250);return 0;
};

在这里插入图片描述

转移和完美转发

move资源的转移

move:将对象的状态或者所有权从一个对象转移到另一个对象,只是转移,没有内存拷贝
在C++11添加了右值引用,并且不能使用左值初始化右值引用,如果想要使用左值初始化一个右值引用需要借助std::move()函数,使用std::move方法可以将左值转换为右值。使用这个函数并不能移动任何东西,而是和移动构造函数一样都具有移动语义,将对象的状态或者所有权从一个对象转移到另一个对象,只是转移,没有内存拷贝。

#include <iostream>
#include <list>
using namespace std;class Test
{
public:Test() : m_num(new int(100)){cout << "construct: my name is jerry" << endl; cout << "m_num: " << m_num << endl;}Test(const Test& a) : m_num(new int(*a.m_num)){cout << "copy construct: my name is tom" << endl;}//浅拷贝//移动构造函数 -> 复用其它对象中的资源(堆内存)Test(Test&& a) :m_num(a.m_num){a.m_num = nullptr;cout << "move construct: my name is sunny" << endl;}~Test(){cout << "destruct Test class ..." << endl;delete m_num;}int* m_num;
};Test getObj1()
{Test t;return t;
}Test getObj2()
{return Test();
}//将临时对象转换为右值引用
Test&& getObj3()
{return Test();
}int main()
{//如果getObj1返回的不是临时对象就不会调用移动构造函数,而是调用拷贝构造函数Test t = getObj1();// >>>>>>>>>>>> getObj1临时对象调用移动构造函数Test&& t1 = getObj1();cout << "t.m_num: " << *t1.m_num << endl;//复用了即将释放对象的所有资源Test&& t2 = getObj2();// >>>>>>>>>>>>> 没有使用移动构造函数 要求右侧是一个临时不能取地址的对象cout << "t.m_num: " << *t2.m_num << endl;//Test&& t3 = t2;//errTest&& t3 = move(t2);Test&& t4 = move(t);list<string> ls1{"hello","world","nihao","shijie",};list<string> ls2 = ls1;// >>>>>>>> 需要拷贝 效率低list<string> ls3 = move(ls1);return 0;
};

没有被编译器优化的结果

//Test t = getObj1();
construct: my name is jerry
m_num: <t.m_num地址>
move construct: my name is sunny
destruct Test class ...
//Test&& t1 = getObj1();
construct: my name is jerry
m_num: <新临时对象的m_num地址>
t.m_num: 100
// Test&& t2 = getObj2();
construct: my name is jerry
m_num: <新临时对象的m_num地址>
t.m_num: 100
//两个move
move construct: my name is sunny
move construct: my name is sunny
destruct Test class ...
destruct Test class ...
destruct Test class ...
destruct Test class ...
destruct Test class ...
destruct Test class ...

Test t = getObj1(); 可能触发移动构造函数(如果编译器没有优化掉)。由于返回的对象是临时对象,编译器将使用移动构造函数将资源从临时对象转移到 t。

forward

函数原型

template <class T> T&& forward (typename remove_reference<T>::type& t) noexcept;
template <class T> T&& forward (typename remove_reference<T>::type&& t) noexcept;

精简之后的样子

std::forward<T>(t);

当T为左值引用类型时,t将被转换为T类型的左值
当T不是左值引用类型时,t将被转换为T类型的右值

案例

#include <iostream>
using namespace std;template<typename T>
void printValue(T& t)
{cout << "l-value: " << t << endl;
}template<typename T>
void printValue(T&& t)
{cout << "r-value: " << t << endl;
}template<typename T>
void testForward(T&& v)
{printValue(v);printValue(move(v));printValue(forward<T>(v));cout << endl;
}int main()
{testForward(520);int num = 1314;testForward(num);//<int>类型右值 num被转换为inttestForward(forward<int>(num));//<int&>类型左值testForward(forward<int&>(num));//<int&&>类型右值testForward(forward<int&&>(num));return 0;
}

在这里插入图片描述
forward(num) 让编译器将 num 作为右值传递给 testForward,这意味着虽然 num 是一个左值,使用 std::forward(num) 后,它会被转发为右值。
forward<int&>(num) 将 num 转发为 左值引用(int&)。这是因为你显式指定了 int&,即要求将 num 作为左值引用转发。
forward<int&&>(num) 会试图将 num 转发为右值引用。但是 num 是左值,左值不能绑定到右值引用(int&&)。因此,这样的代码会导致编译错误。

共享智能指针

C++11中提供了三种智能指针,使用这些智能指针时需要引用头文件:
std::shared_ptr:共享的智能指针
std::unique_ptr:独占的智能指针
std::weak_ptr:弱引用的智能指针,它不共享指针,不能操作资源,是用来监视shared_ptr的。

shared_ptr的初始化

共享智能指针是指多个智能指针可以同时管理同一块有效的内存,共享智能指针shared_ptr 是一个模板类,如果要进行初始化有三种方式:通过构造函数、std::make_shared辅助函数以及reset方法。

通过构造函数初始化

#include <iostream>
#include <memory>
using namespace std;int main()
{// 使用智能指针管理一块 int 型的堆内存shared_ptr<int> ptr1(new int(520));cout << "ptr1管理的内存引用计数: " << ptr1.use_count() << endl;// 使用智能指针管理一块字符数组对应的堆内存shared_ptr<char> ptr2(new char[12]);cout << "ptr2管理的内存引用计数: " << ptr2.use_count() << endl;// 创建智能指针对象, 不管理任何内存shared_ptr<int> ptr3;cout << "ptr3管理的内存引用计数: " << ptr3.use_count() << endl;// 创建智能指针对象, 初始化为空shared_ptr<int> ptr4(nullptr);cout << "ptr4管理的内存引用计数: " << ptr4.use_count() << endl;return 0;
}

在这里插入图片描述

通过拷贝函数进行初始化

#include <iostream>
#include <memory>
using namespace std;int main()
{// 使用智能指针管理一块 int 型的堆内存shared_ptr<int> ptr1(new int(520));cout << "ptr1管理的内存引用计数: " << ptr1.use_count() << endl;shared_ptr<int> ptr5 = ptr1;cout << "ptr5管理的内存引用计数: " << ptr5.use_count() << endl;cout << "ptr1管理的内存引用计数: " << ptr1.use_count() << endl;// 使用智能指针管理一块字符数组对应的堆内存shared_ptr<char> ptr2(new char[12]);cout << "ptr2管理的内存引用计数: " << ptr2.use_count() << endl;// 创建智能指针对象, 不管理任何内存shared_ptr<int> ptr3;cout << "ptr3管理的内存引用计数: " << ptr3.use_count() << endl;// 创建智能指针对象, 初始化为空shared_ptr<int> ptr4(nullptr);cout << "ptr4管理的内存引用计数: " << ptr4.use_count() << endl;return 0;
}

在这里插入图片描述

移动构造函数初始化

#include <iostream>
#include <memory>
using namespace std;int main()
{// 使用智能指针管理一块 int 型的堆内存, 内部引用计数为 1shared_ptr<int> ptr1(new int(520));cout << "ptr1管理的内存引用计数: " << ptr1.use_count() << endl;//调用拷贝构造函数shared_ptr<int> ptr2(ptr1);cout << "ptr2管理的内存引用计数: " << ptr2.use_count() << endl;shared_ptr<int> ptr3 = ptr1;cout << "ptr3管理的内存引用计数: " << ptr3.use_count() << endl;//调用移动构造函数shared_ptr<int> ptr4(std::move(ptr1));//移动给ptr4管理cout << "ptr4管理的内存引用计数: " << ptr4.use_count() << endl;std::shared_ptr<int> ptr5 = std::move(ptr2);//给ptr5管理cout << "ptr5管理的内存引用计数: " << ptr5.use_count() << endl;return 0;
}

在这里插入图片描述
如果使用拷贝的方式初始化共享智能指针对象,这两个对象会同时管理同一块堆内存,堆内存对应的引用计数也会增加;如果使用移动的方式初始智能指针对象,只是转让了内存的所有权,管理内存的对象并不会增加,因此内存的引用计数不会变化。

使用make_shared

通过C++提供的std::make_shared() 就可以完成内存对象的创建并将其初始化给智能指针,函数原型如下:

template< class T, class... Args >
shared_ptr<T> make_shared( Args&&... args );

T:模板参数的数据类型
Args&&… args :要初始化的数据,如果是通过make_shared创建对象,需按照构造函数的参数列表指定

#include <iostream>
#include <string>
#include <memory>
using namespace std;class Test
{
public:Test(){cout << "construct Test..." << endl;}Test(int x){cout << "construct Test, x = " << x << endl;}Test(string str){cout << "construct Test, str = " << str << endl;}~Test(){cout << "destruct Test ..." << endl;}
};int main()
{// 使用智能指针管理一块 int 型的堆内存, 内部引用计数为 1shared_ptr<int> ptr1 = make_shared<int>(520);cout << "ptr1管理的内存引用计数: " << ptr1.use_count() << endl;cout << endl;shared_ptr<Test> ptr2 = make_shared<Test>();cout << "ptr2管理的内存引用计数: " << ptr2.use_count() << endl;shared_ptr<Test> ptr3 = make_shared<Test>(520);cout << "ptr3管理的内存引用计数: " << ptr3.use_count() << endl;shared_ptr<Test> ptr4 = make_shared<Test>("我是要成为海贼王的男人!!!");cout << "ptr4管理的内存引用计数: " << ptr4.use_count() << endl;return 0;
}

在这里插入图片描述

通过reset方法初始化

#include <iostream>
#include <string>
#include <memory>
using namespace std;int main()
{// 使用智能指针管理一块 int 型的堆内存, 内部引用计数为 1shared_ptr<int> ptr1 = make_shared<int>(520);shared_ptr<int> ptr2 = ptr1;shared_ptr<int> ptr3 = ptr1;shared_ptr<int> ptr4 = ptr1;cout << "ptr1管理的内存引用计数: " << ptr1.use_count() << endl;cout << "ptr2管理的内存引用计数: " << ptr2.use_count() << endl;cout << "ptr3管理的内存引用计数: " << ptr3.use_count() << endl;cout << "ptr4管理的内存引用计数: " << ptr4.use_count() << endl;ptr4.reset();cout << "ptr1管理的内存引用计数: " << ptr1.use_count() << endl;cout << "ptr2管理的内存引用计数: " << ptr2.use_count() << endl;cout << "ptr3管理的内存引用计数: " << ptr3.use_count() << endl;cout << "ptr4管理的内存引用计数: " << ptr4.use_count() << endl;return 0;
}

在这里插入图片描述
对于一个未初始化的共享智能指针,可以通过reset方法来初始化,当智能指针中有值的时候,调用reset会使引用计数减1。

获取原始指针

通过智能指针可以管理一个普通变量或者对象的地址,此时原始地址就不可见了。当我们想要修改变量或者对象中的值的时候,就需要从智能指针对象中先取出数据的原始内存的地址再操作,解决方案是调用共享智能指针类提供的get()方法,其函数原型如下:

T* get() const noexcept;
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
#include <memory>using namespace std;int main()
{int len = 128;shared_ptr<char> ptr(new char[len]);// 得到指针的原始地址char* add = ptr.get();memset(add, 0, len);strcpy(add, "我是要成为海贼王的男人!!!");cout << "string: " << add << endl;shared_ptr<int> p(new int);*p = 100;cout << *p.get() << "  " << *p << endl;return 0;
}

在这里插入图片描述

shared_ptr的使用

方式1:

share_ptr<Test> ptr5=make_shared<Test>(8);
ptr5.reset(new Test("hello"));Test* t=ptr5.get();
t->setValue(10000);
t->print();

方式2:

ptr5->setValue(121212);
ptr5->print();

指定删除器

这里是自己指定删除器不使用share_ptr自带的删除器
当智能指针管理的内存对应的引用计数变为0的时候,这块内存就会被智能指针析构掉了。另外,我们在初始化智能指针的时候也可以自己指定删除动作,这个删除操作对应的函数被称之为删除器,这个删除器函数本质是一个回调函数,我们只需要进行实现,其调用是由智能指针完成的。
删除器可以在外部写也可以在内部写个匿名函数lambda表达式
删除器处理时return 0时候进行释放内存

指定删除器简单案例

shared_ptr<Test> ppp(new Test(100),[](Test* t)){//释放内存的操作delete t;
};
shared_ptr<Test> p1(new Test[5],[](Test* t)){//释放内存的操作delete []t;
};
#include <iostream>
#include <memory>
using namespace std;// 自定义删除器函数,释放int型内存
void deleteIntPtr(int* p)
{delete p;cout << "int 型内存被释放了...";
}int main()
{shared_ptr<int> ptr(new int(250), deleteIntPtr);return 0;
}

在这里插入图片描述

deleteIntPtr 函数: deleteIntPtr 函数会收到 shared_ptr 所管理的原始指针 p。然后,delete p; 会释放这块内存。并且在释放内存之后,deleteIntPtr 会打印消息 “int 型内存被释放了…”,指示内存已经被成功释放。

#include <iostream>
#include <memory>
using namespace std;int main()
{shared_ptr<int> ptr(new int(250), [](int *p)// >>>> p=new int(250){delete p;cout << "释放!\n";});return 0;
}

在这里插入图片描述

指定删除器复杂案例

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
#include <memory>
#include <cstring>  // for memset and strcpyusing namespace std;template <typename T>
shared_ptr<T> make_share_array(size_t size)
{// 使用自定义 lambda 作为删除器return shared_ptr<T>(new T[size],  // 分配动态数组[](T* p) {cout << "自定义删除器:释放数组内存!\n";delete[] p;  // 使用 delete[] 正确释放数组});
}int main()
{int len = 128;// 使用 make_share_array 创建共享的 char 数组shared_ptr<char> ptr = make_share_array<char>(len);// 得到指针的原始地址char* add = ptr.get();memset(add, 0, len);  // 初始化数组内容为 0strcpy(add, "我是要成为海贼王的男人!!!");  // 拷贝字符串到数组cout << "string: " << add << endl;// 创建一个 shared_ptr 管理的 int 变量,使用自定义删除器shared_ptr<int> p(new int, [](int* p) {cout << "自定义删除器:释放 int 内存!\n";delete p;});*p = 100;cout << *p.get() << "  " << *p << endl;return 0;
}

c++自带的删除器

在C++11中使用shared_ptr管理动态数组时,需要指定删除器,因为std::shared_ptr的默认删除器不支持数组对象
在删除数组内存时,除了自己编写删除器,也可以使用C++提供的std::default_delete()函数作为删除器,这个函数内部的删除功能也是通过调用delete来实现的,要释放什么类型的内存就将模板类型T指定为什么类型即可。具体处理代码如下:

//删除数组类型内存 ---> Test[]
shared_ptr<Test> p2(new Test[5], default_delete<Test[]>());

自动删除简单案例

#include <iostream>
#include <memory>
using namespace std;template <typename T>
shared_ptr<T> make_share_array(size_t size)
{// 返回匿名对象return shared_ptr<T>(new T[size], default_delete<T[]>());
}int main()
{shared_ptr<int> ptr1 = make_share_array<int>(10);cout << ptr1.use_count() << endl;shared_ptr<char> ptr2 = make_share_array<char>(128);cout << ptr2.use_count() << endl;return 0;
}

自动删除复杂案例

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
#include <memory>
#include <cstring>  // for memset and strcpyusing namespace std;template <typename T>
shared_ptr<T> make_share_array(size_t size)
{// 返回匿名对象,使用 default_delete<T[]> 自动释放数组内存return shared_ptr<T>(new T[size], default_delete<T[]>());
}int main()
{int len = 128;// 使用 make_share_array 创建共享的 char 数组shared_ptr<char> ptr = make_share_array<char>(len);// 得到指针的原始地址char* add = ptr.get();memset(add, 0, len);  // 初始化数组内容为 0strcpy(add, "我是要成为海贼王的男人!!!");  // 拷贝字符串到数组cout << "string: " << add << endl;// 创建一个 shared_ptr 管理的 int 变量shared_ptr<int> p = make_share_array<int>(1);*p = 100;cout << *p.get() << "  " << *p << endl;return 0;
}

在这里插入图片描述

独占智能指针

unique_ptr的初始化

#include <iostream>
#include <memory>
using namespace std;class Test
{
public:Test(int i)	{}void print() { cout << "i: " << i << endl; }
private:int i;
};int main()
{//通过构造函数初始化	unique_ptr<int> ptr1(new int(9));//unique_ptr<int> ptr2 = ptr1;//err >>>>> 独占拥有这段内存//通过移动构造函数初始化unique_ptr<int> ptr2 = move(ptr1);//通过reset初始化ptr2.reset(new int(8));//获取原始指针unique_ptr<Test> ptr3(new Test(1));Test* pt = ptr3.get();pt->print();ptr3->print();
}

在这里插入图片描述

unique_ptr删除器

unique_ptr指定删除器和shared_ptr指定删除器是有区别的,unique_ptr指定删除器的时候需要确定删除器的类型,所以不能像shared_ptr那样直接指定删除器,举例说明:

//传入的删除器的类型为ptrFunc >>>>>>>>> []---> 可以看作函数指针
using ptrFunc = void(*)(Test*);
unique_ptr<Test, ptrFunc> ptr4(new Test("hello"), [](Test* t) {delete t;
});//后面的lambda表达是仿函数因此需要进行包装
unique_ptr<Test, function<void(Test*)>> ptr4(new Test("hello"), [=](Test* t) {delete t;
});//独占的智能指针可以管理数组类型的地址,能够自动释放
unique_ptr<Test[]>ptr5(new Test[3]);
//c++11以后,共享的智能指针可以管理数组类型的地址,能够自动释放
shared_ptr<Test[]>ptr6(new Test[3]);

补充

// 直接使用 lambda 表达式作为删除器类型
auto deleter = [](Test* t) { delete t; };
unique_ptr<Test, decltype(deleter)> ptr4(new Test("hello"), deleter);

弱引用智能指针

弱引用智能指针std::weak_ptr可以看做是shared_ptr的助手,它不管理shared_ptr内部的指针。std::weak_ptr没有重载操作符*和->,因为它不共享指针,不能操作资源,所以它的构造不会增加引用计数,析构也不会减少引用计数,它的主要作用就是作为一个旁观者监视shared_ptr中管理的资源是否存在。

weak_ptr初始化

#include <iostream>
#include <memory>
using namespace std;int main() 
{shared_ptr<int> sp(new int);weak_ptr<int> wp1;weak_ptr<int> wp2(wp1);weak_ptr<int> wp3(sp);weak_ptr<int> wp4;wp4 = sp;weak_ptr<int> wp5;wp5 = wp3;return 0;
}

use_count()

#include <iostream>
#include <memory>
using namespace std;int main()
{shared_ptr<int> sp(new int);weak_ptr<int> wp1;weak_ptr<int> wp2(wp1);weak_ptr<int> wp3(sp);weak_ptr<int> wp4;wp4 = sp;weak_ptr<int> wp5;wp5 = wp3;cout << "use_count: " << endl;cout << "wp1: " << wp1.use_count() << endl;cout << "wp2: " << wp2.use_count() << endl;cout << "wp3: " << wp3.use_count() << endl;cout << "wp4: " << wp4.use_count() << endl;cout << "wp5: " << wp5.use_count() << endl;return 0;
}

在这里插入图片描述
通过打印的结果可以知道,虽然弱引用智能指针wp3、wp4、wp5监测的资源是同一个,但是它的引用计数并没有发生任何的变化,也进一步证明了weak_ptr只是监测资源,并不管理资源。

expired()

通过调用std::weak_ptr类提供的expired()方法来判断观测的资源是否已经被释放

#include <iostream>
#include <memory>
using namespace std;int main() 
{shared_ptr<int> shared(new int(10));weak_ptr<int> weak(shared);cout << "1. weak " << (weak.expired() ? "is" : "is not") << " expired" << endl;shared.reset();cout << "2. weak " << (weak.expired() ? "is" : "is not") << " expired" << endl;return 0;
}

在这里插入图片描述

lock()

通过调用std::weak_ptr类提供的lock()方法来获取管理所监测资源的shared_ptr对象

#include <iostream>
#include <memory>
using namespace std;int main()
{shared_ptr<int> sp1, sp2;weak_ptr<int> wp;sp1 = std::make_shared<int>(520);wp = sp1;sp2 = wp.lock();//wp2=wp1cout << "use_count: " << wp.use_count() << endl;sp1.reset();cout << "use_count: " << wp.use_count() << endl;sp1 = wp.lock();cout << "use_count: " << wp.use_count() << endl;cout << "*sp1: " << *sp1 << endl;cout << "*sp2: " << *sp2 << endl;return 0;
}

在这里插入图片描述

reset()

通过调用std::weak_ptr类提供的reset()方法来清空对象,使其不监测任何资源

#include <iostream>
#include <memory>
using namespace std;int main() 
{shared_ptr<int> sp(new int(10));weak_ptr<int> wp(sp);cout << "1. wp " << (wp.expired() ? "is" : "is not") << " expired" << endl;wp.reset();cout << "2. wp " << (wp.expired() ? "is" : "is not") << " expired" << endl;return 0;
}

在这里插入图片描述

共享智能指针的注意事项

不能使用一个原始地址初始化多个共享智能指针

在这里插入图片描述

#include <iostream>
#include <memory>
using namespace std;struct Test
{shared_ptr<Test> getSharedPtr(){return shared_ptr<Test>(this);}~Test(){cout << "class Test is disstruct ..." << endl;}};int main()
{Test* t = new Test;//shared_ptr<Test> ptr1(t);//shared_ptr<Test> ptr2(t);shared_ptr<Test> ptr1(t);shared_ptr<Test> ptr2(ptr1);return 0;
}

函数不能返回管理this的共享智能指针对象

在这里插入图片描述
//err

#include <iostream>
#include <memory>
using namespace std;struct Test
{shared_ptr<Test> getSharedPtr(){return shared_ptr<Test>(this);//err}~Test(){cout << "class Test is disstruct ..." << endl;}};int main()
{shared_ptr<Test> sp1(new Test);cout << "use_count: " << sp1.use_count() << endl;//这里的this指向的是Test对象 相当于此时的sp2和sp1指向同一个内存shared_ptr<Test> sp2=sp1->getSharedPtr();cout << "use_count: " << sp1.use_count() << endl;return 0;
}

解决方案

这个问题可以通过weak_ptr来解决,通过wek_ptr返回管理this资源的共享智能指针对象shared_ptr。C++11中为我们提供了一个模板类叫做std::enable_shared_from_this,这个类中有一个方法叫做shared_from_this(),通过这个方法可以返回一个共享智能指针,在函数的内部就是使用weak_ptr来监测this对象,并通过调用weak_ptr的lock()方法返回一个shared_ptr对象

#include <iostream>
#include <memory>
using namespace std;struct Test : public enable_shared_from_this<Test>
{shared_ptr<Test> getSharedPtr(){return shared_from_this();}~Test(){cout << "class Test is disstruct ..." << endl;}
};int main()
{shared_ptr<Test> sp1(new Test);// >>>>>>>>>> 此时基类的weak_ptr被初始化了cout << "use_count: " << sp1.use_count() << endl;shared_ptr<Test> sp2 = sp1->getSharedPtr();cout << "use_count: " << sp1.use_count() << endl;return 0;
}

在这里插入图片描述
智能指针内部使用了引用计数(std::shared_ptr)或独占所有权(std::unique_ptr)的机制来管理对象的生命周期。std::shared_ptr 通过引用计数来管理资源。当用一个 std::shared_ptr 初始化另一个 std::shared_ptr 时,新的智能指针将增加该资源的引用计数,而不是直接复制资源。这意味着多个 shared_ptr 可以共享同一个资源,直到最后一个 shared_ptr 被销毁时才释放资源。
在调用enable_shared_from_this类的shared_from_this()方法之前,必须要先初始化函数内部weak_ptr对象,否则该函数无法返回一个有效的shared_ptr对象

共享智能指针不能循环引用

#include <iostream>
#include <memory>
using namespace std;struct TA;
struct TB;struct TA
{shared_ptr<TB> bptr;~TA(){cout << "class TA is disstruct ..." << endl;}
};struct TB
{shared_ptr<TA> aptr;~TB(){cout << "class TB is disstruct ..." << endl;}
};void testPtr()
{shared_ptr<TA> ap(new TA);shared_ptr<TB> bp(new TB);cout << "TA object use_count: " << ap.use_count() << endl;cout << "TB object use_count: " << bp.use_count() << endl;ap->bptr = bp;bp->aptr = ap;cout << "TA object use_count: " << ap.use_count() << endl;cout << "TB object use_count: " << bp.use_count() << endl;
}int main()
{testPtr();return 0;
}

从上面的打印结果来看没有调用析构因此是有问题的,因为 TA 和 TB 之间形成了循环引用,当 testPtr() 函数结束时,局部变量 ap 和 bp 会被销毁,这意味着它们会从栈上被移除。但是,ap 和 bp 持有的 shared_ptr 仍然存在对 TA 和 TB 对象的引用,因此它们的引用计数依然是 2。即使 testPtr 函数结束,但是由于引用计数没有降为 0,它们的析构函数不会被调用,导致内存泄漏。
在这里插入图片描述
解决方案:

#include <iostream>
#include <memory>
using namespace std;struct TA;
struct TB;struct TA
{weak_ptr<TB> bptr;~TA(){cout << "class TA is disstruct ..." << endl;}
};struct TB
{shared_ptr<TA> aptr;~TB(){cout << "class TB is disstruct ..." << endl;}
};void testPtr()
{shared_ptr<TA> ap(new TA);shared_ptr<TB> bp(new TB);cout << "TA object use_count: " << ap.use_count() << endl;cout << "TB object use_count: " << bp.use_count() << endl;ap->bptr = bp;bp->aptr = ap;cout << "TA object use_count: " << ap.use_count() << endl;cout << "TB object use_count: " << bp.use_count() << endl;
}int main()
{testPtr();//>>>>>这样后当testPtr()函数结束后引用计数就会变成0return 0;
}

在这里插入图片描述

分析TA 对象的引用计数变为 2 是因为 shared_ptr (ap) 和 shared_ptr (bp->aptr) 两者同时持有 TA 的引用。
当 bp 被销毁时,bp->aptr(即 shared_ptr)仍然持有对 TA 的引用,直到 ap 也被销毁。
在 testPtr() 函数结束时,ap 会被销毁,TA 的引用计数变为 0,触发 TA 对象的析构。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/58986.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux进程信号(信号的产生)

目录 什么是信号&#xff1f; 信号的产生 信号产生方式1&#xff1a;键盘 前台进程 后台进程 查看信号 signal系统调用 案例 理解进程记录信号 软件层面 硬件层面 信号产生方式2:指令 信号产生方式3:系统调用 kill系统调用 案例 其他产生信号的函数调用 1.rais…

国产化浪潮下,高科技企业如何选择合适的国产ftp软件方案?

高科技企业在数字化转型和创新发展中&#xff0c;数据资产扮演着越来越重要的角色。在研发过程中产生的实验数据、设计文档、测试结果等&#xff0c;专利、商标、版权之类的创新成果等&#xff0c;随着信息量急剧增加和安全威胁的复杂化&#xff0c;传统的FTP软件已经不能满足这…

如何对接正规的外卖霸王餐接口?

根据搜索结果&#xff0c;合规地对接外卖霸王餐接口需要遵循以下步骤和注意事项&#xff1a; 1.合法性与合规性&#xff1a; 确保业务和对API的使用符合当地法律法规&#xff0c;包括消费者权益保护法、电子商务法等。了解并遵守与食品相关的法律法规&#xff0c;如食品安全法…

VUE3实现好看的通用网站源码模板

文章目录 1.设计来源1.1 网站主界面1.2 登录界面1.3 注册界面1.4 图文列表模板界面1.5 简洁列表模板界面1.6 文章内容左右侧模板界面1.7 文章内容模板界面 2.效果和源码2.1 动态效果2.2 源代码2.3 目录结构 源码下载万套模板&#xff0c;程序开发&#xff0c;在线开发&#xff…

论文阅读:DualDn Dual-domain Denoising via Differentiable ISP

这篇文章是 2024 ECCV 的一篇文章&#xff0c;介绍的是降噪相关的工作。 Abstract 图像去噪是相机图像信号处理 (ISP) 流程中的一个关键组成部分。将去噪器融入 ISP 流程有两种典型方式&#xff1a;直接对拍摄的原始帧&#xff08;RAW域&#xff09;应用去噪器&#xff0c;或…

从文本到图像:AIGC 如何改变内容生产的未来

从文本到图像&#xff1a;AIGC 如何改变内容生产的未来 在过去的几年里&#xff0c;人工智能生成内容&#xff08;AIGC&#xff09;技术迅速崛起&#xff0c;从基础的文本生成到更复杂的图像、音频甚至视频生成。如今&#xff0c;AIGC 已经不仅仅是技术研究中的一个概念&#…

运维智能化转型:AIOps引领IT运维新浪潮

1. AIOps是什么&#xff1f; AIOps&#xff08;Artificial Intelligence for IT Operations&#xff09;&#xff0c;即人工智能在IT运维中的应用&#xff0c;通过机器学习技术处理运维数据&#xff08;如日志、监控信息和应用数据&#xff09;&#xff0c;解决传统自动化运维…

Spring Boot 与 Vue 共筑航空机票预定卓越平台

作者介绍&#xff1a;✌️大厂全栈码农|毕设实战开发&#xff0c;专注于大学生项目实战开发、讲解和毕业答疑辅导。 &#x1f345;获取源码联系方式请查看文末&#x1f345; 推荐订阅精彩专栏 &#x1f447;&#x1f3fb; 避免错过下次更新 Springboot项目精选实战案例 更多项目…

2024 第五次周赛

A: 直接遍历即可 #include<bits/stdc.h> using namespace std;typedef long long ll; typedef pair<ll, ll>PII; const int N 2e6 10; const int MOD 998244353; const int INF 0X3F3F3F3F;int n, m; int main() {cin >> n;int cnt 0;for(int i 0; i …

斐波那契数的第n个数代码分享(c基础)

1&#xff1a;迭代 //斐波那契数的第n个数 #include<stdio.h> //unsigned long long Fib(n) //{ // // if (1 n || 2 n) // return 1; // else return Fib((n - 1) Fib((n - 2); // // //} unsigned long long Fib(n) {if (n 1 || n 2)return 1;else{int j 3;u…

STM32单片机WIFI语音识别智能衣柜除湿消毒照明

实践制作DIY- GC0196-WIFI语音识别智能衣柜 一、功能说明&#xff1a; 基于STM32单片机设计-WIFI语音识别智能衣柜 二、功能介绍&#xff1a; STM32F103C系列最小系统板LCD1602显示器ULN2003控制的步进电机&#xff08;柜门开关&#xff09;5V加热片直流风扇紫外消毒灯DHT11…

qt QShortcut详解

1、概述 QShortcut是Qt框架中的一个类&#xff0c;它提供了一种创建键盘快捷键的方式。通过QShortcut&#xff0c;开发者可以将特定的键盘组合&#xff08;如CtrlC、AltF4等&#xff09;与应用程序中的动作&#xff08;如复制、关闭窗口等&#xff09;关联起来。当用户在应用程…

C语言笔记(字符串函数,字符函数,内存函数)

目录 前言 1.字符串函数 1.1.strlen 1.2.strcpy 1.3.strcat 1.4.strcmp 1.5.strncpy 1.6.strncat 1.7.strncmp 1.8.strstr 1.9.strtok 1.10.strerror 2.字符函数 2.1字符分类函数 2.2字符转换函数 3.内存函数 3.1.mencpy 3.2.memmove 3.3.memcmp 前言 本文重…

Debian 12环境里部署nginx步骤记录

前言 浅记录一下 在Debian 12环境里安装nginx的过程&#xff0c;这个过程并没有特别顺利&#xff0c;有遇到各种报错&#xff0c;这些报错&#xff0c;我也会记录进来&#xff1b;方便自己后续查看以及供需要的小伙伴参考吧~~ 主要参考资料&#xff1a;https://blog.csdn.ne…

详解基于C#开发Windows API的SendMessage方法的鼠标键盘消息发送

在C#中&#xff0c;SendMessage方法是一个强大的工具&#xff0c;它允许我们与Windows API交互&#xff0c;模拟键盘和鼠标事件。本文将详细介绍如何使用SendMessage方法来发送鼠标和键盘消息。 1. SendMessage方法概述 SendMessage是Windows API中的一个函数&#xff0c;它用…

单片机入门知识

1单片机系统的int是16位 计算机系统的int是32位&#xff08;数据总线&#xff09; 2的16次方是65536 所以在单片机中&#xff0c;如果表示一个正整数&#xff0c;这个数字的范围是0~65535&#xff0c;总共有65536种可能 2内存条用于存储计算机运行时的数据&#xff0c;是连接…

ABAP:SET CURSOR FIELD设置鼠标焦点

SET CURSOR FIELD <字段名>&#xff1a;设置鼠标焦点到该字段 SET CURSOR 设置到鼠标焦点列还是行 SET CURSOR LINE 设置鼠标焦点到行 GET CURSOR field <字段名> &#xff1a;这个相对应的获取鼠标焦点得到的字段

ArcGIS从Excel表格文件导入XY数据并定义坐标系与投影的方法

本文介绍在ArcMap软件中&#xff0c;从Excel表格文件中批量导入坐标点数据&#xff0c;将其保存为.shp矢量格式&#xff0c;并定义坐标系、转为投影坐标系的方法。 已知我们有一个Excel表格文件&#xff08;可以是.xls、.xlsx、.csv等多种不同的表格文件格式&#xff09;&#…

三周精通FastAPI:38 针对不同的编程语言来生成客户端

官方文档&#xff1a;https://fastapi.tiangolo.com/zh/advanced/generate-clients/ 生成客户端 因为 FastAPI 是基于OpenAPI规范的&#xff0c;自然您可以使用许多相匹配的工具&#xff0c;包括自动生成API文档 (由 Swagger UI 提供)。 一个不太明显而又特别的优势是&#…

Linux【基础篇】T

--已经不知道幸福是什么味道了 Linux命令行 linux命令提示符 linux目录结构 Windows的目录结构是N个顶点&#xff0c;可以是C盘 可以是D盘 可以是E盘 往下。 linux的目录结构是只有一个订单 &#xff0c;像一颗倒状的树木一样的。 linux常用目录含义 /etc目录下一些重要的配置…