您好,登錄后才能下訂單哦!
本篇內容主要講解“C++怎么壓縮作用域”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++怎么壓縮作用域”吧!
ES.5: 盡量壓縮作用域
可讀性。最小化資源的保持時間。避免變量的誤用。
換個說法:不要沒有必要擴大名稱的作用域。
Example(示例)
void use()
{
int i; // bad: i is needlessly accessible after loop
for (i = 0; i < 20; ++i) { /* ... */ }
// no intended use of i here
for (int i = 0; i < 20; ++i) { /* ... */ } // good: i is local to for-loop
if (auto pc = dynamic_cast<Circle*>(ps)) { // good: pc is local to if-statement
// ... deal with Circle ...
}
else {
// ... handle error ...
}
}
void use(const string& name)
{
string fn = name + ".txt";
ifstream is {fn};
Record r;
is >> r;
// ... 200 lines of code without intended use of fn or is ...
}
這個函數用任何標準衡量都太長了,但是要點在于fn使用的資源和is管理的文件被維持的時間遠遠超過需要,有可能在函數接下來的部分is和fn會被意外使用。這種情況下,分解出一個read函數可能是一個好主意。
Record load_record(const string& name)
{
string fn = name + ".txt";
ifstream is {fn};
Record r;
is >> r;
return r;
}
void use(const string& name)
{
Record r = load_record(name);
// ... 200 lines of code ...
}
Flag loop variable declared outside a loop and not used after the loop
標記在循環外定義循環變量并且循環之后不再使用的情況。
Flag when expensive resources, such as file handles and locks are not used for N-lines (for some suitable N)
標記高價值資源(例如文件句柄和鎖)在N行(適當值)之內沒有使用的情況。
到此,相信大家對“C++怎么壓縮作用域”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。