溫馨提示×

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

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

C++怎么實(shí)現(xiàn)一個(gè)函數(shù)只執(zhí)行單一邏輯操作

發(fā)布時(shí)間:2021-11-26 14:22:57 來源:億速云 閱讀:152 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要講解了“C++怎么實(shí)現(xiàn)一個(gè)函數(shù)只執(zhí)行單一邏輯操作”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C++怎么實(shí)現(xiàn)一個(gè)函數(shù)只執(zhí)行單一邏輯操作”吧!

F.2: A function should perform a single logical operation(一個(gè)函數(shù)只執(zhí)行單一邏輯操作)

Reason(原因)

A function that performs a single operation is simpler to understand, test, and reuse.

執(zhí)行單一操作的函數(shù)更容易理解,測(cè)試和復(fù)用。

Example(示例)

Consider(考慮下面的函數(shù)):

void read_and_print()    // bad{    int x;    cin >> x;    // check for errors    cout << x << "\n";}

這是一個(gè)綁定到特定輸入的代碼塊,永遠(yuǎn)不會(huì)找到另一個(gè)(不同的)用途。我們可以將函數(shù)拆分成合適的邏輯塊并參數(shù)化:

int read(istream& is)    // better{    int x;    is >> x;    // check for errors    return x;}
void print(ostream& os, int x){    os << x << "\n";}

這些函數(shù)可以在需要的時(shí)候組合使用:

void read_and_print(){    auto x = read(cin);    print(cout, x);}

如果有需要,我們可以針對(duì)數(shù)據(jù)類型,輸入/輸出機(jī)制,錯(cuò)誤處理等模板化read()和print(),例如:

auto read = [](auto& input, auto& value)    // better{    input >> value;    // check for errors};
auto print(auto& output, const auto& value){    output << value << "\n";}
Enforcement(實(shí)施建議)
  • Consider functions with more than one "out" parameter suspicious. Use return values instead, including tuple for multiple return values.

    懷疑具有多個(gè)輸出參數(shù)的函數(shù)。改用返回值,如果多個(gè)返回值時(shí)可以使用tuple。

  • Consider "large" functions that don't fit on one editor screen suspicious. Consider factoring such a function into smaller well-named suboperations.

    懷疑超過一個(gè)編輯屏幕的巨大函數(shù)??紤]將這個(gè)函數(shù)重構(gòu)為稍小的經(jīng)過良好命名的子操作。

  • Consider functions with 7 or more parameters suspicious.

    懷疑包含7個(gè)(或以上)參數(shù)的函數(shù)。

感謝各位的閱讀,以上就是“C++怎么實(shí)現(xiàn)一個(gè)函數(shù)只執(zhí)行單一邏輯操作”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)C++怎么實(shí)現(xiàn)一個(gè)函數(shù)只執(zhí)行單一邏輯操作這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

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

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

c++
AI