标签: c++ qt qt5
所以当在Qt中编程时,我喜欢尽可能地使用Qt实现。 据我所见,std::unique_ptr没有Qt版本或者有吗?
std::unique_ptr
如果Qt不存在,会产生“相同”结果的替代方案是什么?
答案 0 :(得分:28)
相当于std::unique_ptr的Qt是QScopedPointer。
QScopedPointer
它不太有用,因为它不支持移动语义,使其更接近C ++ 03 std::auto_ptr(Why is auto_ptr being deprecated?)。
std::auto_ptr