您好,登錄后才能下訂單哦!
本篇內容介紹了“C++在什么時候使用智能指針作參數”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
R.30: 只有在包含明確的生命周期語義時使用智能指針作參數
如果一個函數只是需要一個部件本身,接受一個智能指針作參數是錯誤的。它應該可以接受所有部件對象,而不只是一個生命周期被按照特定方法管理的對象。不需要管理生命周期的函數應該使用原始的指針和引用。
Example, bad(反面示例)
// callee
void f(shared_ptr<widget>& w)
{
// ...
use(*w); // only use of w -- the lifetime is not used at all
// ...
};
// caller
shared_ptr<widget> my_widget = /* ... */;
f(my_widget);
widget stack_widget;
f(stack_widget); // error
// callee
void f(widget& w)
{
// ...
use(w);
// ...
};
// caller
shared_ptr<widget> my_widget = /* ... */;
f(*my_widget);
widget stack_widget;
f(stack_widget); // ok -- now this works
(Simple) Warn if a function takes a parameter of a smart pointer type (that overloads operator-> or operator*) that is copyable but the function only calls any of: operator*, operator-> or get(). Suggest using a T* or T& instead.
(簡單)如果一個函數使用了可拷貝的(重載了操作符->和操作符*的)智能指針類型的參數但是只是調用了運算符*、->或者get(),發出警告并建議使用T*或者T&。
Flag a parameter of a smart pointer type (a type that overloads operator-> or operator*) that is copyable/movable but never copied/moved from in the function body, and that is never modified, and that is not passed along to another function that could do so. That means the ownership semantics are not used. Suggest using a T* or T& instead.
標記定義了(重載了操作符->和操作符*的)可拷貝/可移動智能指針類型的參數,但在函數體中卻從未使用拷貝和移動功能,指針從未被修改也沒有交給一個會那么做的函數的情況。那意味著所有權語義根本沒有被使用。建議使用T*或者T&。
“C++在什么時候使用智能指針作參數”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。