您好,登錄后才能下訂單哦!
這篇文章主要講解了“C++為什么輸出結果時更應該使用返回值而不是輸出參數”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C++為什么輸出結果時更應該使用返回值而不是輸出參數”吧!
返回值本身可以說明用途,而引用類型可以是輸入/輸出參數也有可能只是輸出參數,容易被誤用。
這種觀點可以覆蓋像標準容器那樣的大對象,它們會為了性能和避免顯式內存管理而使用隱式移動操作。
如果你有多個值需要返回,使用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);
包含多個(單獨看都可以低成本移動)元素的結構體合起來移動時可能會代價高昂。
不推薦返回常量值。這種過時的建議現在已經被淘汰;它不會帶來好處,而且其接口含有移動語義。
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修飾的觀點認為,這樣會阻止(極少發生的)對臨時變量的意外訪問。相反的觀點認為這樣做會(非常多地)阻止移動語義的運用。
Exceptions(例外)
For non-value types, such as types in an inheritance hierarchy, return the object by unique_ptr
or shared_ptr
.
對于非值類型函數,例如處于繼承關系中的類型,通過unique_ptr或者shared_ptr返回對象。
譯者注:兩種方式都可以避免不必要的拷貝動作。
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>)的移動成本很高,考慮從自由存儲上為其申請內存并使用句柄(例如unique_prt)返回它,或者通過用于填充的非常量對象的引用來傳遞。
譯者注:POD是Plain old data structure的簡稱,是C++語言的標準中定義的一類數據結構,可以簡單地理解只包含單純數據類型的結構體。
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.
為了讓處于內循環中的函數調用可以重復使用帶有容量的對象(例如std::string,std::vector):把它看做輸入/輸出參數并通過引用傳遞。
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
譯者注:示例代碼說明的是POD使用引用傳遞輸出值,而小數據者應該直接使用返回值。
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.
警告那些沒有在寫之前讀(沒有輸入用途)而且可以低成本返回的參數,它們應該作為返回值輸出。
Flag returning a const
value. To fix: Remove const
to return a non-const
value instead.
警告返回常數值的狀況。修改方法:去掉常量修飾,返回一個非常量。
感謝各位的閱讀,以上就是“C++為什么輸出結果時更應該使用返回值而不是輸出參數”的內容了,經過本文的學習后,相信大家對C++為什么輸出結果時更應該使用返回值而不是輸出參數這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。