91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++怎么使用T*或onwer<T*>指明唯一對象

發布時間:2021-11-26 13:43:17 來源:億速云 閱讀:223 作者:iii 欄目:大數據

這篇文章主要介紹“C++怎么使用T*或onwer<T*>指明唯一對象”,在日常操作中,相信很多人在C++怎么使用T*或onwer<T*>指明唯一對象問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么使用T*或onwer<T*>指明唯一對象”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

F.22: Use T* or owner<T*> to designate a single object(使用T*或owner<T*>指明唯一對象)

Reason(原因)

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*>指明唯一對象”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

佳木斯市| 图木舒克市| 区。| 苗栗县| 昆山市| 牟定县| 五常市| 济阳县| 茌平县| 江门市| 弋阳县| 古田县| 常州市| 化隆| 涿鹿县| 阿瓦提县| 亚东县| 仙居县| 洛阳市| 安宁市| 济南市| 保靖县| 肥乡县| 洛宁县| 永善县| 阿坝| 舟山市| 邹城市| 涞水县| 永泰县| 桓台县| 茂名市| 通许县| 开封县| 平果县| 江口县| 赤壁市| 安丘市| 武宁县| 河东区| 大方县|