caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: wrader@OCF.Berkeley.EDU
To: caml-list@inria.fr
Subject: [Caml-list] A class that contains instances of itself?
Date: Sat, 5 Jan 2002 04:45:59 -0800 (PST)	[thread overview]
Message-ID: <200201051245.g05Cjxp24150@war.OCF.Berkeley.EDU> (raw)

Please forgive me if there is an obvious answer to
my question.

I want to have an class that can contain instances
of that same class.  Assume something like this:
(ignore any easy syntax errors - I'm making
up this example right now)

class someClass = 
  object
    var mutable anotherInstanceOfSomeClass ???????

    method talk () =
      print_string("Hello.\n")

    method setInstance x = 
      anotherInstanceOfSomeClass <- x

    method useInstance () =
      if anotherInstanceOfSomeClass is set to a
      usable value, then do
        anotherInstanceOfSomeClass#talk
      else
        do nothing
  end;;


One must call anotherInstanceOfSomeClass#setInstance
before using anotherInstanceOfSomeClass#talk.

What do I put in place of the ?????? to indicate
that the value is not yet usable?  I could create
a "dummy" someClass object to use as the "NULL" value,
let's say called someClassNULL.  someClassNULL must
already be defined if I use it in the body of
someClass, but I can't create it before the
definition of someClass because the compiler doesn't
know what someClass _is_ yet.  Catch-22!!

I've been staring at this problem for hours, so any
help would be fantastic!  (If only I spoke French and
could read the many books available about OCaml...)

Thanks,

Walter Rader
-------------------
Bug reports: http://caml.inria.fr/bin/caml-bugs  FAQ: http://caml.inria.fr/FAQ/
To unsubscribe, mail caml-list-request@inria.fr  Archives: http://caml.inria.fr


             reply	other threads:[~2002-01-05 12:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-01-05 12:45 wrader [this message]
2002-01-05 13:15 ` John Prevost
2002-01-05 13:16 ` Alain Frisch
2002-01-05 23:27   ` [Caml-list] IMAP library for Caml? Will Benton

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=200201051245.g05Cjxp24150@war.OCF.Berkeley.EDU \
    --to=wrader@ocf.berkeley.edu \
    --cc=caml-list@inria.fr \
    /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;
as well as URLs for NNTP newsgroup(s).