溫馨提示×

溫馨提示×

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

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

C++為什么不要在條件語句中增加多余的==或!=

發(fā)布時(shí)間:2021-11-25 16:30:10 來源:億速云 閱讀:127 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“C++為什么不要在條件語句中增加多余的==或!=”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“C++為什么不要在條件語句中增加多余的==或!=”吧!

ES.87:不要在條件語句中增加多余的==或!=

Reason(原因)

這么做可以避免冗長的代碼并且減少某些錯(cuò)誤的機(jī)會(huì)。幫助提高代碼的以執(zhí)行并符合習(xí)慣。

Example(示例)

從定義的角度來講,if語句、while語句、for語句中的條件判斷得到true或false的結(jié)果。數(shù)值和0比較,指針和nullptr進(jìn)行比較。

// These all mean "if `p` is not `nullptr`"
if (p) { ... }            // good
if (p != 0) { ... }       // redundant `!=0`; bad: don't use 0 for pointers
if (p != nullptr) { ... } // redundant `!=nullptr`, not recommended

通常,if(p)被讀作如果p是合法的,這是程序員意圖的直接表達(dá),而if(p != nullptr)卻是一種冗長的表達(dá)方式。

Example(示例)

本規(guī)則在聲明作為條件使用時(shí)特別有用。

if (auto pc = dynamic_cast<Circle>(ps)) { ... } // execute if ps points to a kind of Circle, good

if (auto pc = dynamic_cast<Circle>(ps); pc != nullptr) { ... } // not recommended
Example(示例)

Note that implicit conversions to bool are applied in conditions. For example:

注意可以隱式類型轉(zhuǎn)換為布爾類型的運(yùn)算都可以用于條件語句。例如S:

for (string s; cin >> s; ) v.push_back(s);

This invokes istream's operator bool().

這段代碼利用了istream的bool()運(yùn)算符。

Note(注意)

將整數(shù)和0進(jìn)行顯示比較通常不是冗長形式。原因是(和指針和布爾類型不同,)整數(shù)通??梢员磉_(dá)多于兩個(gè)有意義的值。另外通常使用0(zero)表示成功。因此,最好將整數(shù)比較作為特例。

void f(int i)
{
   if (i)            // suspect
   // ...
   if (i == success) // possibly better
   // ...
}

Always remember that an integer can have more than two values.

一定記住整數(shù)可以擁有的有效值可以超過兩個(gè)。

Example, bad(反面示例)

It has been noted that

已經(jīng)提醒過了:

if(strcmp(p1, p2)) { ... }   // are the two C-style strings equal? (mistake!)

is a common beginners error. If you use C-style strings, you must know the <cstring> functions well. Being verbose and writing

這是一個(gè)常見的,初學(xué)者錯(cuò)誤。如果你使用C風(fēng)格字符串,以一定知道<cstring>函數(shù)。保持冗長并書寫

if(strcmp(p1, p2) != 0) { ... }   // are the two C-style strings equal? (mistake!)

would not in itself save you.

也沒什么幫助。

Note(注意)

The opposite condition is most easily expressed using a negation:

使用!更容易表達(dá)反邏輯:

// These all mean "if `p` is `nullptr`"
if (!p) { ... }           // good
if (p == 0) { ... }       // redundant `== 0`; bad: don't use `0` for pointers
if (p == nullptr) { ... } // redundant `== nullptr`, not recommended
Enforcement(實(shí)施建議)

Easy, just check for redundant use of != and == in conditions.

容易,只需要檢查條件語句中多余的!=和==。

到此,相信大家對“C++為什么不要在條件語句中增加多余的==或!=”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI