std::string provides a max_size() method to determine the maximum number of elements it can contain.
However, to work out the maximum length of a string in general, the programmer has to create a (possibly empty) string object.
If this class doesn't need any information from the programmer, why isn't max_size() available as a compile-time constant ? Is there some kind of runtime information necessary for a string to work out its maximum size ?
max_sizeas applied to strings; allocators are a different story). – Nemo Oct 30 '12 at 22:23std::string::nposbut to provide the more opportunity for flexibility it is a method. – Loki Astari Oct 30 '12 at 23:22std::vector's memory contiguous. And what about exception specifications? They are no gods, they make errors. The C++03 standard only says (23.1) "size()of the largest possible container" and that it should have O(1). That's quite vague, IYAM, and leaves a lot of room for speculation as to what it was meant for. – sbi Nov 1 '12 at 20:34