I had heard that C++11 was going to require string
s to be allocated in contiguous memory. I even thought I saw a stack overflow question on it, but I can't seem to find it.
I know that in practice both gcc and Visual Studio do allocate string
s contiguously, I'm just asking as to the standard's requirements.
Section 21.4.1.5 of the 2011 standard states:
The two parts of the identity expression are
begin()
iterator, advance byn
, then dereference and take the address of the resulting element.begin()
iterator, dereference and take the address of the resulting element. Addn
to this pointer.Since both are required to be identical, this enforces contiguous storage; that is, the iterator cannot move over any non-contiguous storage without violating this requirement.