Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
std::vector<boost::optional<double>> foo; //populate foo.
自新标准以来,向量是可移动的,但不幸的是,它们还没有使可选的可移动:(
有没有制作可选可移动的计划?
上述向量是否仍能像任何其他向量一样有效地移动?
std::vector无论存储的类型如何,组件都是可移动的。移动操作只需将指向一个向量中的内部缓冲区的指针移动到另一个向量。存储在该缓冲区中的对象的类型是无关紧要的,因为它们保持原样。
std::vector