草庐IT

CopyInsertable

全部标签

c++ - MoveInsertable 和 CopyInsertable 之间的区别?

有人可以对这两个术语进行更清晰的解释吗?换句话说,请通过示例进行一些简单的解释。(from:cppreference.com)MoveInsertable:Specifiesthatarvalueofthetypecanbecopiedinuninitializedstorage.CopyInsertable:Specifiesthataninstanceofthetypecanbecopy-constructedin-place,inuninitializedstorage. 最佳答案 这些要求是一个类型T之间的关系和一个容器X.

c++ - std::vector::resize(size_type) 需要 CopyInsertable?

这个问题是在我回答thisanotherquestion的时候提出的.N333723.3.6.3“vector容量”说(在770页):voidresize(size_typesz);Effects:Ifsz,equivalenttoerase(begin()+sz,end());.Ifsize(),appendssz-size()value-initializedelementstothesequence.Requires:TshallbeCopyInsertableinto*this.然而,clang++saysit'sokaythoughTisnotcopyable.我认为resiz