C++怎么使用unique_ptr<widget>&作参数
这篇文章主要介绍“C++怎么使用unique_ptr
临夏州ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!
R.33: 表达函数会重置widget时,使用unique_ptr
Reason(原因)
以这种方式使用unique_ptr可以从文档和实现两个方面强制函数调用的重置语义。
Note(注意)
“重置”的意思是使指针或者智能指针参照另外一个对象。
Example(示例)
void reseat(unique_ptr&); // "will" or "might" reseat pointer
Example, bad(反面示例)
void thinko(const unique_ptr&); // usually not what you want
Enforcement(实施建议)
(Simple) Warn if a function takes a Unique_pointer
parameter by lvalue reference and does not either assign to it or call reset() on it on at least one code path. Suggest taking a T* or T& instead. (简单)如果一个函数以左值引用方式使用了Unique_pointer
类型参数,却没有至少一个代码路径上对它赋值或者调用reset方法,提出警告。建议改用T*或者T& 。 (Simple) ((Foundation)) Warn if a function takes a Unique_pointer
parameter by reference to const. Suggest taking a const T* or const T& instead. (简单)((基础))如果一个函数以常量引用形式使用了Unique_pointer
参数,提出警告。建议改用const T* 或 const T&。
到此,关于“C++怎么使用unique_ptr
当前文章:C++怎么使用unique_ptr<widget>&作参数
路径分享:http://pwwzsj.com/article/ghhsod.html