From: John Prevost <j.prevost@cs.cmu.edu>
To: Alessandro Baretta <alex@baretta.com>
Cc: zze-MARCHEGAY Michael stagiaire FTRD/DTL/LAN
<michael.marchegay@rd.francetelecom.com>,
Ocaml <caml-list@inria.fr>
Subject: Re: [Caml-list] Deep copy
Date: 15 Jul 2002 18:35:11 -0400 (94.110 UMT) [thread overview]
Message-ID: <86sn2ksjq8.fsf@laurelin.dementia.org> (raw)
In-Reply-To: <3D332851.1080909@baretta.com>
>>>>> "ab" == Alessandro Baretta <alex@baretta.com> writes:
ab> I agree so far. But did you actually test the code below? I
ab> have reason to believe you are mistaken in believing that
ab> mutable fields are shared between Oo.copied objects, in such a
ab> way that assignment to such a field in one object will result
ab> in a modification in the value of the same field in all
ab> copies. I would consider such a behavior a major design flaw
ab> in the language.
The code he gave is correct. The problem arises not when the object
itself contains a mutable field, but when one of its fields contains a
mutable value. (An object with a mutable field, a string, an array, a
record with a mutable field, a ref, etc.)
# class a = object
val s = " "
method get x = s.[x]
method set x c = s.[x] <- c
end;;
class a :
object
method get : int -> char
method set : int -> char -> unit
val s : string
end
# let x = new a;;
val x : a = <obj>
# x #get 0;;
- : char = ' '
# x #set 0 'a';;
- : unit = ()
# x #get 0;;
- : char = 'a'
# let y = Oo.copy x;;
val y : a = <obj>
# y #get 0;;
- : char = 'a'
# y #set 0 'b';;
- : unit = ()
# y #get 0;;
- : char = 'b'
# x #get 0;;
- : char = 'b'
As far as I can tell, the poster to whom you are responding was simply
pointing this out: if a field contains a mutable value (whether the
field itself is mutable or not), the contents of that field are
copied, which results in physical equality of the field values in
those cases where physical identity is important. He doesn't appear
to have claimed that the copied fields themselves have physical
equality.
John.
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
next prev parent reply other threads:[~2002-07-15 22:28 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-07-15 15:24 zze-MARCHEGAY Michael stagiaire FTRD/DTL/LAN
2002-07-15 15:24 ` Eray Ozkural
2002-07-15 18:18 ` Alessandro Baretta
2002-07-15 19:53 ` Alessandro Baretta
2002-07-15 22:35 ` John Prevost [this message]
2002-07-15 23:03 ` Alessandro Baretta
2002-07-16 8:19 ` John Prevost
-- strict thread matches above, loose matches on Subject: below --
2002-07-15 10:06 zze-MARCHEGAY Michael stagiaire FTRD/DTL/LAN
2002-07-15 13:42 ` Ken Wakita
2002-07-15 14:43 ` Eray Ozkural
2002-07-15 15:33 ` Ken Wakita
2002-07-15 23:09 ` Ken Wakita
2002-07-15 15:02 ` Eray Ozkural
2002-07-15 15:27 ` Nicolas Cannasse
2002-07-15 15:40 ` Eray Ozkural
2002-07-15 16:22 ` sebastien FURIC
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=86sn2ksjq8.fsf@laurelin.dementia.org \
--to=j.prevost@cs.cmu.edu \
--cc=alex@baretta.com \
--cc=caml-list@inria.fr \
--cc=michael.marchegay@rd.francetelecom.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox