您好,登錄后才能下訂單哦!
本篇內容介紹了“C++怎么為所有可能重用的操作命名”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
T.140:為所有可能重用的操作命名
Reason(原因)
Documentation, readability, opportunity for reuse.
文檔化,可讀性,重用的機會。
Example(示例)
struct Rec {
string name;
string addr;
int id; // unique identifier
};
bool same(const Rec& a, const Rec& b)
{
return a.id == b.id;
}
vector<Rec*> find_id(const string& name); // find all records for "name"
auto x = find_if(vr.begin(), vr.end(),
[&](Rec& r) {
if (r.name.size() != n.size()) return false; // name to compare to is in n
for (int i = 0; i < r.name.size(); ++i)
if (tolower(r.name[i]) != tolower(n[i])) return false;
return true;
}
);
There is a useful function lurking here (case insensitive string comparison), as there often is when lambda arguments get large.
代碼中隱藏著一個有用(在不需要區分大小寫時)的函數,當lambda表達式變大時通常會這樣。
bool compare_insensitive(const string& a, const string& b)
{
if (a.size() != b.size()) return false;
for (int i = 0; i < a.size(); ++i) if (tolower(a[i]) != tolower(b[i])) return false;
return true;
}
auto x = find_if(vr.begin(), vr.end(),
[&](Rec& r) { compare_insensitive(r.name, n); }
);
Or maybe (if you prefer to avoid the implicit name binding to n):
或者可以這樣(如果你更希望避免n上的隱式名稱綁定):
auto cmp_to_n = [&n](const string& a) { return compare_insensitive(a, n); };
auto x = find_if(vr.begin(), vr.end(),
[](const Rec& r) { return cmp_to_n(r.name); }
);
whether functions, lambdas, or operators.
函數,lambda表達式,運算符都適用。
Exception(例外)
Lambdas logically used only locally, such as an argument to for_each and similar control flow algorithms.
Lambda表達式邏輯上是本地使用的,例如作為一個for_each或類似的控制流算法的參數。
Lambdas as initializers
Lambda表達式作為初始化器使用時。
(hard) flag similar lambdas
(困難)標記類似的lambda表達式。
“C++怎么為所有可能重用的操作命名”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。