caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Virgile Prevosto <virgile.prevosto@gmail.com>
To: caml-list@inria.fr
Subject: Re: [Caml-list] accessing values of a class from another instance
Date: Thu, 8 Dec 2005 22:17:15 +0100	[thread overview]
Message-ID: <278733770512081317k58635faal@mail.gmail.com> (raw)
In-Reply-To: <43988791.2060507@mitre.org>

Hello,

2005/12/8, Shaddin Doghmi <shaddin@mitre.org>:
> It seems instance variables of an object are not accessible from other
> objects that are instances of the same class. What is a nice way to
> simulate this functionality? I would like to avoid accessor methods for

A possibility is to use the module system and let your instance
variable and the corresponding accessor method have an abstract type:
this way, you'll still be able to call the method outside of the
module, but you won't be able to use its result. This is described
here:
http://caml.inria.fr/pub/docs/manual-ocaml/manual005.html#ss:friends

Of course, one could probably think of more sophisticated interfaces
for the module, where you would for instance export only a class type
where the accessor method
itself is hidden and a constructor function that performs at the same
time a 'new' and a coercion to this class type. I've never played with
that, though.
--
E tutto per oggi, a la prossima volta
Virgile


      reply	other threads:[~2005-12-08 21:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-12-08 19:20 Shaddin Doghmi
2005-12-08 21:17 ` Virgile Prevosto [this message]

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=278733770512081317k58635faal@mail.gmail.com \
    --to=virgile.prevosto@gmail.com \
    --cc=caml-list@inria.fr \
    --cc=virgile.prevosto@m4x.org \
    /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).