您好,登錄后才能下訂單哦!
本篇內容主要講解“C++為什么不要在條件語句中增加多余的==或!=”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++為什么不要在條件語句中增加多余的==或!=”吧!
ES.87:不要在條件語句中增加多余的==或!=
這么做可以避免冗長的代碼并且減少某些錯誤的機會。幫助提高代碼的以執行并符合習慣。
Example(示例)
從定義的角度來講,if語句、while語句、for語句中的條件判斷得到true或false的結果。數值和0比較,指針和nullptr進行比較。
// 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是合法的,這是程序員意圖的直接表達,而if(p != nullptr)卻是一種冗長的表達方式。
Example(示例)
本規則在聲明作為條件使用時特別有用。
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
Note that implicit conversions to bool are applied in conditions. For example:
注意可以隱式類型轉換為布爾類型的運算都可以用于條件語句。例如S:
for (string s; cin >> s; ) v.push_back(s);
This invokes istream's operator bool().
這段代碼利用了istream的bool()運算符。
Note(注意)
將整數和0進行顯示比較通常不是冗長形式。原因是(和指針和布爾類型不同,)整數通常可以表達多于兩個有意義的值。另外通常使用0(zero)表示成功。因此,最好將整數比較作為特例。
void f(int i)
{
if (i) // suspect
// ...
if (i == success) // possibly better
// ...
}
Always remember that an integer can have more than two values.
一定記住整數可以擁有的有效值可以超過兩個。
Example, bad(反面示例)
It has been noted that
已經提醒過了:
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
這是一個常見的,初學者錯誤。如果你使用C風格字符串,以一定知道<cstring>函數。保持冗長并書寫
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:
使用!更容易表達反邏輯:
// 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
Easy, just check for redundant use of != and == in conditions.
容易,只需要檢查條件語句中多余的!=和==。
到此,相信大家對“C++為什么不要在條件語句中增加多余的==或!=”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。