看板 C_and_CPP 關於我們 聯絡資訊
※ 引述《s505015 (s505015)》之銘言: : 最近自學c++ : 跑去leetcode上面研究 : 發現到了這個問題 : vector<int>* vec 和vector<int>& num : 照兩個實在是看不懂 : 我去查了一下 : vector<int>a 那個a應該是vector名字吧 : 但是一開始我就把vector<int>* vec的* vec想成為名字 : 但是好像又不太對 : 所以感到很困惑 : 想這個好久了 : 希望有人幫忙 : 謝謝 哈囉, 看到 raw pointer 覺得驚驚的, 所以順便推廣下, 首先可 以參考 Herb Sutter 在 CppCon 2016 的 talk: Leak-Freedom in C++... By Default. https://youtu.be/JfmTagWcqoE
在 C++ 使用物件的時候, 必需時刻關注物件的生命週期, 物件會 經過建構, 解構等時期, 而參與這些過程與否, 語意上我們稱為 owning / non-owning (ownership). 下面就列出幾個常見的使用 情境, 還有說明它們的差別: string s; // owning string & rs = s; // non-owning string * ps = &s; // (*) non-owning string * ps2 = new string; // (*) owning string * ps3 = nullptr; // (*) non-owning, optional unique_ptr<string> ups{...}; // owning shared_ptr<string> sps{...}; // owning, share ownership // with others weak_ptr<string> wps{...}; // non-owning, may request // temporary ownership observer_ptr<string> ops{...}; // non-owning 從上面可以發現 raw pointer 的語意上是有分別的, 但你從型別 根本無法看出它的意圖, 有個最惡名昭彰的例子是 C-style 字串: char c = 'a'; char * pc = &c; puts(pc); // what result? 為了消除 raw pointer 語意上的分歧, C++ Core Guidelines 提 出幾個型別來幫助判斷, 大部分都可以在 GSL (Guidelines Support Library) 裡找到: char c = 'a'; owner<char*> oc = new char; // owning not_null<char*> nnc{&c}; // non-owning, same as char& string_view sv = "hello"; // non-owning, for c-style string or // char sequence not ended by '\0' 在這邊簡單做個總結: 1. owning 語意: a. 不需要動態綁定對象: 使用一般物件const unique_ptr / shared_ptr b. 需要動態綁定對象: 使用 unique_ptr / shared_ptr 2. non-owning 語意: a. 不需要動態綁定對象: 使用參考 b. 需要動態綁定對象: 使用 weak_ptr / observer_ptr 3. 非用 raw pointer 不可: a. owning 語意: 使用 owner<T*> b. non-owning 語意: 物件需存在使用 not_null<T*> 物件可不存在用 T* 參考資料: C++ Core Guidelines https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines Guidelines Support Library (Microsoft) https://github.com/Microsoft/GSL GSL Lite https://github.com/martinmoene/gsl-lite -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 123.193.76.85 ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1543587276.A.11C.html
james732: 推好文連發 11/30 22:22
hare1039: 推 11/30 23:48
Serge45: 推 12/01 00:58
※ 編輯: poyenc (123.193.76.85), 12/01/2018 09:55:37
s505015: 謝謝您 12/02 10:38