C++智能指针和正则表达式

1.智能指针
头文件:memory
#include
本质:一个类
shared_ptr(共享形智能指针)
#include
#include
using namespace std;

int main()
{
shared_ptr ps(new int(1));

}

get()函数-返回对象管理的内存的指针
#include
#include
using namespace std;

int main()
{
shared_ptr ps(new int(1));
int*p=ps.get();//返回指针(地址)

}
usr_count-返回管理数
#include
#include
using namespace std;

int main()
{
shared_ptr ps(new int(1));
int*p=ps.get();//返回指针(

C++智能指针和正则表达式最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/14853.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>