您好,登錄后才能下訂單哦!
這篇文章主要講解了“C++為什么輸出結(jié)果時(shí)更應(yīng)該使用返回值而不是輸出參數(shù)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“C++為什么輸出結(jié)果時(shí)更應(yīng)該使用返回值而不是輸出參數(shù)”吧!
返回值本身可以說(shuō)明用途,而引用類型可以是輸入/輸出參數(shù)也有可能只是輸出參數(shù),容易被誤用。
這種觀點(diǎn)可以覆蓋像標(biāo)準(zhǔn)容器那樣的大對(duì)象,它們會(huì)為了性能和避免顯式內(nèi)存管理而使用隱式移動(dòng)操作。
如果你有多個(gè)值需要返回,使用tuple或者類似的多成員類型。
// OK: return pointers to elements with the value x
vector<const int*> find_all(const vector<int>&, int x);
// Bad: place pointers to elements with value x in-out
void find_all(const vector<int>&, vector<const int*>& out, int x);
包含多個(gè)(單獨(dú)看都可以低成本移動(dòng))元素的結(jié)構(gòu)體合起來(lái)移動(dòng)時(shí)可能會(huì)代價(jià)高昂。
不推薦返回常量值。這種過(guò)時(shí)的建議現(xiàn)在已經(jīng)被淘汰;它不會(huì)帶來(lái)好處,而且其接口含有移動(dòng)語(yǔ)義。
const vector<int> fct(); // bad: that "const" is more trouble than it is worth
vector<int> g(const vector<int>& vx)
{
// ...
fct() = vx; // prevented by the "const"
// ...
return fct(); // expensive copy: move semantics suppressed by the "const"
}
建議為返回值增加const修飾的觀點(diǎn)認(rèn)為,這樣會(huì)阻止(極少發(fā)生的)對(duì)臨時(shí)變量的意外訪問(wèn)。相反的觀點(diǎn)認(rèn)為這樣做會(huì)(非常多地)阻止移動(dòng)語(yǔ)義的運(yùn)用。
Exceptions(例外)
For non-value types, such as types in an inheritance hierarchy, return the object by unique_ptr
or shared_ptr
.
對(duì)于非值類型函數(shù),例如處于繼承關(guān)系中的類型,通過(guò)unique_ptr或者shared_ptr返回對(duì)象。
譯者注:兩種方式都可以避免不必要的拷貝動(dòng)作。
If a type is expensive to move (e.g., array<BigPOD>
), consider allocating it on the free store and return a handle (e.g., unique_ptr
), or passing it in a reference to non-const
target object to fill (to be used as an out-parameter).
如果某種類型(例如array<BigPOD>)的移動(dòng)成本很高,考慮從自由存儲(chǔ)上為其申請(qǐng)內(nèi)存并使用句柄(例如unique_prt)返回它,或者通過(guò)用于填充的非常量對(duì)象的引用來(lái)傳遞。
譯者注:POD是Plain old data structure的簡(jiǎn)稱,是C++語(yǔ)言的標(biāo)準(zhǔn)中定義的一類數(shù)據(jù)結(jié)構(gòu),可以簡(jiǎn)單地理解只包含單純數(shù)據(jù)類型的結(jié)構(gòu)體。
To reuse an object that carries capacity (e.g., std::string
, std::vector
) across multiple calls to the function in an inner loop: treat it as an in/out parameter and pass by reference.
為了讓處于內(nèi)循環(huán)中的函數(shù)調(diào)用可以重復(fù)使用帶有容量的對(duì)象(例如std::string,std::vector):把它看做輸入/輸出參數(shù)并通過(guò)引用傳遞。
Example(示例)
struct Package { // exceptional case: expensive-to-move object
char header[16];
char load[2024 - 16];
};
Package fill(); // Bad: large return value
void fill(Package&); // OK
int val(); // OK
void val(int&); // Bad: Is val reading its argument
譯者注:示例代碼說(shuō)明的是POD使用引用傳遞輸出值,而小數(shù)據(jù)者應(yīng)該直接使用返回值。
Flag reference to non-const
parameters that are not read before being written to and are a type that could be cheaply returned; they should be "out" return values.
警告那些沒(méi)有在寫之前讀(沒(méi)有輸入用途)而且可以低成本返回的參數(shù),它們應(yīng)該作為返回值輸出。
Flag returning a const
value. To fix: Remove const
to return a non-const
value instead.
警告返回常數(shù)值的狀況。修改方法:去掉常量修飾,返回一個(gè)非常量。
感謝各位的閱讀,以上就是“C++為什么輸出結(jié)果時(shí)更應(yīng)該使用返回值而不是輸出參數(shù)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)C++為什么輸出結(jié)果時(shí)更應(yīng)該使用返回值而不是輸出參數(shù)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(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)容。