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.
如果我push_back有很多元素,然后erase它们,内存仍然会被保留,对吧?那么如何强制向量重新分配到更小的大小以节省内存呢?
push_back
erase
我没有使用 C++11,所以很遗憾我不能使用shrink_to_fit.
shrink_to_fit
这里的答案不适合我。我不明白我应该交换什么以及如何去做。