Created on 2007-10-31.00:00:00 last changed 171 months ago
[ 850 has been added to deal with this issue with respect to deque. ]
Proposed resolution:
To Class template basic_string [basic.string] synopsis, Class template vector [vector] synopsis, and Class vector<bool> [vector.bool] synopsis, add:
void shrink_to_fit();
To basic_string capacity [string.capacity] and vector capacity [vector.capacity], add:
void shrink_to_fit();Remarks: shrink_to_fit is a non-binding request to reduce capacity() to size(). [Note: The request is non-binding to allow latitude for implementation-specific optimizations. — end note]
A std::vector can be shrunk-to-fit via the swap idiom:
vector<int> v; ... v.swap(vector<int>(v)); // shrink to fitor:
vector<int>(v).swap(v); // shrink to fitor:
swap(v, vector<int>(v)); // shrink to fit
A non-binding request for shrink-to-fit can be made to a std::string via:
string s; ... s.reserve(0);
Neither of these is at all obvious to beginners, and even some experienced C++ programmers are not aware that shrink-to-fit is trivially available.
Lack of explicit functions to perform these commonly requested operations makes vector and string less usable for non-experts. Because the idioms are somewhat obscure, code readability is impaired. It is also unfortunate that two similar vector-like containers use different syntax for the same operation.
The proposed resolution addresses these concerns. The proposed function takes no arguments to keep the solution simple and focused.
History | |||
---|---|---|---|
Date | User | Action | Args |
2010-10-21 18:28:33 | admin | set | messages: + msg3663 |
2010-10-21 18:28:33 | admin | set | messages: + msg3662 |
2007-10-31 00:00:00 | admin | create |