本篇內容介紹了“C++在什么時候使用智能指針作參數(shù)”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
創(chuàng)新互聯(lián)公司2013年開創(chuàng)至今,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目成都網(wǎng)站制作、成都網(wǎng)站建設網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元膠州做網(wǎng)站,已為上家服務,為膠州各地企業(yè)和個人服務,聯(lián)系電話:18980820575
R.30: 只有在包含明確的生命周期語義時使用智能指針作參數(shù)
如果一個函數(shù)只是需要一個部件本身,接受一個智能指針作參數(shù)是錯誤的。它應該可以接受所有部件對象,而不只是一個生命周期被按照特定方法管理的對象。不需要管理生命周期的函數(shù)應該使用原始的指針和引用。
Example, bad(反面示例)
// callee
void f(shared_ptr& w)
{
// ...
use(*w); // only use of w -- the lifetime is not used at all
// ...
};
// caller
shared_ptr my_widget = /* ... */;
f(my_widget);
widget stack_widget;
f(stack_widget); // error
// callee
void f(widget& w)
{
// ...
use(w);
// ...
};
// caller
shared_ptr 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.
(簡單)如果一個函數(shù)使用了可拷貝的(重載了操作符->和操作符*的)智能指針類型的參數(shù)但是只是調用了運算符*、->或者get(),發(fā)出警告并建議使用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.
標記定義了(重載了操作符->和操作符*的)可拷貝/可移動智能指針類型的參數(shù),但在函數(shù)體中卻從未使用拷貝和移動功能,指針從未被修改也沒有交給一個會那么做的函數(shù)的情況。那意味著所有權語義根本沒有被使用。建議使用T*或者T&。
“C++在什么時候使用智能指針作參數(shù)”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質量的實用文章!