真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C++怎么用not_null定義不能為空的指針

本篇內(nèi)容主要講解“C++怎么用not_null定義不能為空的指針”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“C++怎么用not_null定義不能為空的指針”吧!

專注于為中小企業(yè)提供網(wǎng)站設(shè)計、網(wǎng)站建設(shè)服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)撫寧免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了1000多家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。

I.12: Declare a pointer that must not be null asnot_null( 用not_null定義不能為空的指針

Reason(原因)

To help avoid dereferencing nullptr errors. To improve performance by avoiding redundant checks for nullptr.

為了防止解引用nullptr錯誤。為了避免多余的空指針檢查以提高性能。

譯者注:解引用就是指針前面加*獲取內(nèi)容的操作。

Example(示例)

int length(const char* p);            // it is not clear whether length(nullptr) is valid
length(nullptr);                      // OK?
int length(not_null p);  // better: we can assume that p cannot be nullptr
int length(const char* p);            // we must assume that p can be nullptr

By stating the intent in source, implementers and tools can provide better diagnostics, such as finding some classes of errors through static analysis, and perform optimizations, such as removing branches and null tests.

通過在代碼中說明目的,實現(xiàn)者和工具可以提供較好的診斷,例如通過靜態(tài)分析發(fā)現(xiàn)某些類型的錯誤,執(zhí)行性能優(yōu)化,例如移除分支和空判斷。

譯者注:指的是上述代碼中使用not_null的情況。

Note(注意)

not_null is defined in the guidelines support library.

not_null在準(zhǔn)則支持庫中被定義。

譯者注:積極地使用準(zhǔn)則庫。

Note(注意)

The assumption that the pointer to char pointed to a C-style string (a zero-terminated string of characters) was still implicit, and a potential source of confusion and errors. Use czstring in preference to const char*.

指向字符的指針會指向一個C風(fēng)格的字符串(以0結(jié)尾的字符串)這樣一個假設(shè)還是沒有說清楚,這會成為不確定性和錯誤的來源。在引用const char*時使用czstring。

// we can assume that p cannot be nullptr// we can assume that p points to a zero-terminated array of charactersint length(not_null p);

Note: length() is, of course, std::strlen() in disguise.

注意:length()當(dāng)然是偽裝的std::strlen。

Enforcement(實施建議)

  • (Simple) ((Foundation)) If a function checks a pointer parameter against nullptr before access, on all control-flow paths, then warn it should be declared not_null.

    (簡單)((基礎(chǔ)))如果一個函數(shù)在使用指針參數(shù)之前在所有控制流路徑上進(jìn)行空檢查,那么發(fā)出應(yīng)該參數(shù)被聲明為not_null的警告信息。

  • (Complex) If a function with pointer return value ensures it is not nullptr on all return paths, then warn the return type should be declared not_null.

    (復(fù)雜)如果一個指針類型(返回值)函數(shù)在它的所有返回路徑上都確認(rèn)返回值不為空,那么發(fā)出返回值應(yīng)該被定義為not_null的警告信息。

到此,相信大家對“C++怎么用not_null定義不能為空的指針”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!


當(dāng)前文章:C++怎么用not_null定義不能為空的指針
文章網(wǎng)址:http://weahome.cn/article/gissoe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部