Re: STL map question : directed to stl map expert(s)....
On 21 Sep., 03:18, Craig Scott <audiofana...@gmail.com> wrote:
I think others have responded sufficiently to this thread
(particularly Maciej's counter-example), but I'm intrigued by the
statement that an invalidated pointer is not CopyConstructible nor
Assignable. According to the standard, neither CopyConstructible
(20.1.3) nor Assignable (23.1/4) require a pointer to be
dereferencable. Remember that it is what the pointer *points to* that
no longer exists, but the pointer itself still exists and does not
magically change its value just because what it used to point to no
longer exists. A pointer is a POD type that can be copied and assigned
at will (whether the value being copied/assigned has meaning is a
different issue).
The standard has stricter requirements here and the proper
differentiation
is *singular* versus *non-singular*, see [iterator.requirements]/5
from the
recent draft N2369:
"[..] Iterators can also have singular values that are not associated
with any
container. [ Example: After the declaration of an uninitialized
pointer x
(as with int* x;), x must always be assumed to have a singular value
of a
pointer. -end example ] Results of most expressions are undefined
for singular values; the only exceptions are destroying an iterator
that
holds a singular value and the assignment of a non-singular value to
an
iterator that holds a singular value. In this case the singular value
is
overwritten the same way as any other value. Dereferenceable values
are always non-singular."
And later on in p. 10:
"An invalid iterator is an iterator that may be singular."
Greetings from Bremen,
Daniel Kr|gler
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]