最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

enable_shared_from_this

2023-02-24 02:28 作者:小粉絲8  | 我要投稿

// https://learn.microsoft.com/en-us/cpp/standard-library/enable-shared-from-this-class?view=msvc-170

#include <memory>

#include <iostream>

#include <cstring>

using namespace std;

struct base

? ? // : public std::enable_shared_from_this<base>

{

? ? char *val;

? ? base(){

? ? ? ? val = new char[1024];

? ? }

? ? ~base(){

? ? ? ? delete []val;

? ? }

? ? // shared_ptr<base> share_more()

? ? base *share_more()

? ? {

? ? ? ? // return shared_from_this();

? ? ? ? return this;

? ? }

};

int main2()

{

? ? // std::shared_ptr<base> sp2;

? ? base *sp2;

? ? {

? ? ? ? // std::shared_ptr<base> sp1 = make_shared<base>();

? ? ? ? base b; base *sp1 = &b;

? ? ? ? sp2 = sp1->share_more();

? ? ? ? std::strncpy(sp1->val, "hello", 1024 - 1);

? ? }

? ? cout << "sp2->val == " << sp2->val << endl;

? ? return 0;

}

---

// https://learn.microsoft.com/en-us/cpp/standard-library/enable-shared-from-this-class?view=msvc-170

#include <memory>

#include <iostream>

#include <cstring>

using namespace std;

struct base

? ? : public std::enable_shared_from_this<base>

{

? ? char *val;

? ? base(){

? ? ? ? val = new char[1024];

? ? }

? ? ~base(){

? ? ? ? delete []val;

? ? }

? ? shared_ptr<base> share_more()

? ? // base *share_more()

? ? {

? ? ? ? return shared_from_this();

? ? ? ? // return this;

? ? }

};

int main3()

{

? ? std::shared_ptr<base> sp2;

? ? // base *sp2;

? ? {

? ? ? ? std::shared_ptr<base> sp1 = make_shared<base>();

? ? ? ? // base b; base *sp1 = &b;

? ? ? ? sp2 = sp1->share_more();

? ? ? ? std::strncpy(sp1->val, "hello", 1024 - 1);

? ? }

? ? cout << "sp2->val == " << sp2->val << endl;

? ? return 0;

}


enable_shared_from_this的評論 (共 條)

分享到微博請遵守國家法律
雅江县| 常州市| 潜山县| 陇西县| 且末县| 金塔县| 西安市| 三穗县| 新化县| 霍城县| 呈贡县| 淅川县| 永州市| 衡南县| 钦州市| 富顺县| 新昌县| 平安县| 文山县| 进贤县| 额敏县| 襄汾县| 延安市| 合肥市| 石河子市| 天峨县| 孝昌县| 长垣县| 海宁市| 安康市| 宁安市| 阳东县| 长泰县| 桐梓县| 河间市| 湘乡市| 盐山县| 米泉市| 华蓥市| 乌兰浩特市| 营山县|