您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++的for循環怎使用”,在日常操作中,相信很多人在C++的for循環怎使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++的for循環怎使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
ES.86:避免在基本for循環的循環體中修改循環控制變量
The loop control up front should enable correct reasoning about what is happening inside the loop. Modifying loop counters in both the iteration-expression and inside the body of the loop is a perennial source of surprises and bugs.
外在的循環控制方式應該能夠讓人正確的推測循環內部正在發生什么。無論在迭代表達式中還是環體內修改循環計數都會增加理解難度甚至引發錯誤。
Example(示例)
for (int i = 0; i < 10; ++i) {
// no updates to i -- ok
}
for (int i = 0; i < 10; ++i) {
//
if (/* something */) ++i; // BAD
//
}
bool skip = false;
for (int i = 0; i < 10; ++i) {
if (skip) { skip = false; continue; }
//
if (/* something */) skip = true; // Better: using two variables for two concepts.
//
}
Flag variables that are potentially updated (have a non-const use) in both the loop control iteration-expression and the loop body.
標記(循環,譯者注)變量可能被修改(非常量參數使用)的情況,包含在迭代表達式中和循環體內部兩種情況。
到此,關于“C++的for循環怎使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。