Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: Didier Remy <Didier.Remy@inria.fr>
To: Markus Mottl <mottl@miss.wu-wien.ac.at>
Cc: OCAML <caml-list@inria.fr>
Subject: Re: creating fresh objects of type 'self
Date: Mon, 12 Apr 1999 12:39:05 +0200	[thread overview]
Message-ID: <19990412123905.09954@morgon.inria.fr> (raw)
In-Reply-To: <199904121103.NAA00431@miss.wu-wien.ac.at>; from Markus Mottl on Mon, Apr 12, 1999 at 01:03:54PM +0100

> This works, of course:
> 
>   class parent = object (self : 'self)
>     val mutable children : 'self list = []
>     method add_fresh_object = children <- {<>} :: children
>   end
> 
> But this is not the intended result: now we have added a *copy* of
> the current object, not of its "fresh" state, i.e. the state it was in
> immediately after creation.

You could use an initializer to remember the "fresh" state in an instance
variable (using {< >}), and use a copy of that instance variable
in the method add_fresh_object. 

    class parent = object (self : 'self)
      val mutable fresh = None
      val mutable children : 'self list = []
      method add_fresh_object =
        let Some x = fresh in children <- Oo.copy x :: children
      initializer  fresh <- Some {< >}
    end;;

Anyway, you have apparently found your own solution.

Best regards,

        Didier




  reply	other threads:[~1999-04-12 17:32 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-04-09 22:56 Markus Mottl
1999-04-12  8:33 ` Didier Remy
1999-04-12 12:03   ` Markus Mottl
1999-04-12 10:39     ` Didier Remy [this message]
1999-04-12 13:10       ` Markus Mottl

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=19990412123905.09954@morgon.inria.fr \
    --to=didier.remy@inria.fr \
    --cc=caml-list@inria.fr \
    --cc=mottl@miss.wu-wien.ac.at \
    /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