您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++怎么使用T*或onwer<T*>指明唯一對象”,在日常操作中,相信很多人在C++怎么使用T*或onwer<T*>指明唯一對象問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么使用T*或onwer<T*>指明唯一對象”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
T*
or owner<T*>
to designate a single object(使用T*或owner<T*>指明唯一對象)Readability: it makes the meaning of a plain pointer clear. Enables significant tool support.
可讀性:這可以讓裸指針的含義更明確。使重要的工具支持有效。
譯者注:owner<T*>是gsl(準則支持庫)提供的一個功能,從編譯的角度來看和T*的含義一致,但是附加了所有權語義,可以幫助程序員理解代碼和工具檢查。
Note(注意)
In traditional C and C++ code, plain T*
is used for many weakly-related purposes, such as:
在傳統的C和C++代碼中,裸指針用于很多沒有什么關系的目的,例如:
Identify a (single) object (not to be deleted by this function)
表示一個(單一)對象(不會被本函數刪除)
Point to an object allocated on the free store (and delete it later)
指向一個從自由存儲上獲取的對象(以后會刪除)
Hold the nullptr
持有nullptr
Identify a C-style string (zero-terminated array of characters)
表示一個C風格字符串(以0結尾的字符數組)
Identify an array with a length specified separately
表示一個數組,長度被另外定義
Identify a location in an array
表示數組的首地址
This makes it hard to understand what the code does and is supposed to do. It complicates checking and tool support.
這樣做的結果是很難理解代碼在做什么和被預期做什么。無論是檢查還是工具支持都會復雜。
Example(示例)
void use(int* p, int n, char* s, int* q){ p[n - 1] = 666; // Bad: we don't know if p points to n elements; // assume it does not or use span<int> cout << s; // Bad: we don't know if that s points to a zero-terminated array of char; // assume it does not or use zstring delete q; // Bad: we don't know if *q is allocated on the free store; // assume it does not or use owner}
譯者注:這可能是我們每天都能見到的指針用法,很難看出它們到底是前面提供的那種用法。
better(稍好)
void use2(span<int> p, zstring s, owner<int*> q){ p[p.size() - 1] = 666; // OK, a range error can be caught cout << s; // OK delete q; // OK}
Note(注意)
owner<T*>
represents ownership, zstring
represents a C-style string.
owner<T*>表現所有權,zstring表達C風格的字符串
Enforcement(實施建議)
(Simple) ((Bounds)) Warn for any arithmetic operation on an expression of pointer type that results in a value of pointer type.
(簡單)((邊界))警告所有針對指針表達式,并得到指針類型結果的算數操作。
到此,關于“C++怎么使用T*或onwer<T*>指明唯一對象”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。