[comp.lang.c++] Copying and identity

gyro@kestrel.edu (Scott Layson Burson) (05/29/91)

In article <72150@microsoft.UUCP> jimad@microsoft.UUCP (Jim ADCOCK) writes:
>In article <281EE52A.672F@tct.com> chip@tct.com (Chip Salzenberg) writes:
>|In an article with which I otherwise agree, Jim Adcock writes:
>|
>|>* C++ has VERY ill-defined rules about when and where compilers may make
>|>	a copy of an object, changing "its 'identity.'"
>|
>|Those rules describe the creation of new objects, not the changing of
>|old objects' identities.  So I would consider object copying rules to
>|be a separate issue from object identity determination.
>
>This kind of depends on one's perspective.  As a programmer, if you get
>a copy made unexpectedly by some compiler, where you expect the original
>instead, then the identity you get is not the one you expected.  The fact
>that you get the wrong object along with the wrong identity doesn't help
>you much.  What you'd really like is clearer rules about if and when
>its legal for a compiler to make a copy.  The idea that a compiler can
>introduce a "temporary" copy if and when it chooses kind of makes OOP
>difficult -- or at least non-portable.

Hmm.  Although you don't give a specific example, this makes me want
to say "you're doing something wrong".

A couple of months into the process of learning C++ and writing my
first program in it, I found myself battling a bug that just wouldn't
go away.  Every time I fixed it in one place, it popped up in another.
Eventually it dawned on me that there are certain patterns of usage --
"models", I came to call them -- which tie together various properties
of a class's implementation and interface; and that the bug I was
chasing was rooted in the fact that I had attempted to mix two of
these models.  To fix the problem, then, I had to pick one of the two
models and go with it, removing any attempt to use the class in the
other sort of way.

A full description of these models would take many pages -- I'm
working on writing this stuff down, but don't yet have anything
appropriate for distribution -- but one thing that's clear is that
adherence to them would have prevented any bug having to do with the
identities of unexpectedly copied objects.  That is actually a good
example of a kind of confusion that would be ruled out.  (I am
gratified to see that I am not the only person who has ever made an
error of this sort.)  The reason for this, briefly, is that "value"
models are distinguished from "object" models; "object" models support
the notions of identity and mutable state, but "value" models do not
provide either of these concepts.  What you were trying to do, I
gather, is to apply the notion of identity to a class built with a
"value" model.

Ironically in light of your complaint, C++ does give you a way to
prohibit the copying of objects of a given class: make the copy
constructor private.  "But then I can't pass these objects by value!"
That's exactly right; in order for identity to be meaningful, you
can't pass them by value.

Does this make sense to you?

-- Scott
Gyro@Reasoning.COM