weak_ptr lock 理解

創(chuàng)建新的 std::shared_ptr 對象,它共享被管理對象的所有權(quán)箱蝠。若無被管理對象煤杀,即 *this 為空,則返回亦為空的 shared_ptr 谒出。

等效地返回 expired() ? shared_ptr<T>() : shared_ptr<T>(*this) 隅俘,原子地執(zhí)行邻奠。

參數(shù)

(無)

返回值

std::weak_ptr::expired 返回 false 則為共享被占有對象所有權(quán)的 shared_ptr 。否則返回默認(rèn)構(gòu)造的 T 類型的 shared_ptr 为居。

注意

此函數(shù)和 std::shared_ptr 的構(gòu)造函數(shù)可能獲得 std::weak_ptr 所指向的被管理對象的臨時所有權(quán)碌宴。區(qū)別是 std::shared_ptr 的構(gòu)造函數(shù)在其 std::weak_ptr 為空時拋異常,而 std::weak_ptr<T>::lock() 構(gòu)造空的 std::shared_ptr<T> 蒙畴。

示例代碼

#include <iostream>
#include <memory>
 
void observe(std::weak_ptr<int> weak)
{
    if (auto observe = weak.lock()) {
        std::cout << "\tobserve() able to lock weak_ptr<>, value=" << *observe << "\n";
    } else {
        std::cout << "\tobserve() unable to lock weak_ptr<>\n";
    }
}
 
int main()
{
    std::weak_ptr<int> weak;
    std::cout << "weak_ptr<> not yet initialized\n";
    observe(weak);
 
    {
        auto shared = std::make_shared<int>(42);
        weak = shared;
        std::cout << "weak_ptr<> initialized with shared_ptr.\n";
        observe(weak);
    }
 
    std::cout << "shared_ptr<> has been destructed due to scope exit.\n";
    observe(weak);
}

參考鏈接

https://zh.cppreference.com/w/cpp/memory/weak_ptr/lock

輸出

weak_ptr<> not yet initialized
    observe() unable to lock weak_ptr<>
weak_ptr<> initialized with shared_ptr.
    observe() able to lock weak_ptr<>, value=42
shared_ptr<> has been destructed due to scope exit.
    observe() unable to lock weak_ptr<>
Program ended with exit code: 0

擴(kuò)展思考贰镣,變成class 之后

#include <iostream>
#include <memory>
#include <string>
#include <unordered_map>
#include <utility>

class testTask{
public:
    int taskId;
};

using testTaskPtr = std::shared_ptr<testTask>;

void observe(std::weak_ptr<int> weak)
{
    if (auto observe = weak.lock()) {
        std::cout << "\tobserve() able to lock weak_ptr<>, value=" << *observe << "\n";
    } else {
        std::cout << "\tobserve() unable to lock weak_ptr<>\n";
    }
}

void observe_c(std::weak_ptr<testTask> weak)
{
    if (auto observe = weak.lock()) {
        std::cout << "\tobserve_c() able to lock weak_ptr<>, addr=" << observe << "\n";
    } else {
        std::cout << "\tobserve_c() unable to lock weak_ptr<>\n";
    }
}

int main()
{
    std::weak_ptr<int> weak;
    std::cout << "weak_ptr<> not yet initialized\n";
    observe(weak);
 
    {
        auto shared = std::make_shared<int>(42);
        weak = shared;
        std::cout << "weak_ptr<> initialized with shared_ptr.\n";
        observe(weak);
    }
 
    std::cout << "shared_ptr<> has been destructed due to scope exit.\n";
    observe(weak);
    
    
   
    std::unordered_map<std::string,testTaskPtr> test_map;
    
    auto test_share = std::make_shared<testTask>();
    std::cout << "weak_ptr<> class initialized with shared_ptr.\n";
    observe_c(test_share);
    test_map["test"] = test_share;
    test_map.erase("test");
    std::cout << "weak_ptr<> class erase with shared_ptr.\n";
    observe_c(test_share);
    
    test_share = nullptr;
    std::cout << "test_share = nullptr \n";
    observe_c(test_share);
   // test_map.insert (std::make_pair<std::string,testTask>("test_share",test_share));
    
}

輸出

weak_ptr<> not yet initialized
    observe() unable to lock weak_ptr<>
weak_ptr<> initialized with shared_ptr.
    observe() able to lock weak_ptr<>, value=42
shared_ptr<> has been destructed due to scope exit.
    observe() unable to lock weak_ptr<>
weak_ptr<> class initialized with shared_ptr.
    observe_c() able to lock weak_ptr<>, addr=0x10062b078
weak_ptr<> class erase with shared_ptr.
    observe_c() able to lock weak_ptr<>, addr=0x10062b078
test_share = nullptr 
    observe_c() unable to lock weak_ptr<>
Program ended with exit code: 0

參考代碼

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市膳凝,隨后出現(xiàn)的幾起案子碑隆,更是在濱河造成了極大的恐慌,老刑警劉巖蹬音,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件上煤,死亡現(xiàn)場離奇詭異,居然都是意外死亡著淆,警方通過查閱死者的電腦和手機(jī)劫狠,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來永部,“玉大人独泞,你說我怎么就攤上這事√β瘢” “怎么了懦砂?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長组橄。 經(jīng)常有香客問我孕惜,道長,這世上最難降的妖魔是什么晨炕? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任衫画,我火速辦了婚禮,結(jié)果婚禮上瓮栗,老公的妹妹穿的比我還像新娘削罩。我一直安慰自己,他們只是感情好费奸,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布弥激。 她就那樣靜靜地躺著,像睡著了一般愿阐。 火紅的嫁衣襯著肌膚如雪微服。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天缨历,我揣著相機(jī)與錄音以蕴,去河邊找鬼糙麦。 笑死,一個胖子當(dāng)著我的面吹牛丛肮,可吹牛的內(nèi)容都是我干的赡磅。 我是一名探鬼主播,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼宝与,長吁一口氣:“原來是場噩夢啊……” “哼焚廊!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起习劫,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤咆瘟,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后诽里,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體袒餐,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年须肆,在試婚紗的時候發(fā)現(xiàn)自己被綠了匿乃。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片桩皿。...
    茶點(diǎn)故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡豌汇,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出泄隔,到底是詐尸還是另有隱情拒贱,我是刑警寧澤,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布佛嬉,位于F島的核電站逻澳,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏暖呕。R本人自食惡果不足惜斜做,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望湾揽。 院中可真熱鬧瓤逼,春花似錦、人聲如沸库物。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽戚揭。三九已至诱告,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間民晒,已是汗流浹背精居。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工锄禽, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人箱蟆。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓沟绪,卻偏偏與公主長得像,于是被迫代替她去往敵國和親空猜。 傳聞我的和親對象是個殘疾皇子绽慈,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評論 2 345