caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Gerd Stolpmann <info@gerd-stolpmann.de>
To: Ted Kremenek <kremenek@cs.stanford.edu>
Cc: skaller <skaller@users.sourceforge.net>,
	david.baelde@ens-lyon.org, Ocaml <caml-list@inria.fr>
Subject: Re: [Caml-list] Class/prototype-based OO
Date: Tue, 29 Aug 2006 14:03:26 +0200	[thread overview]
Message-ID: <1156853008.21883.84.camel@localhost.localdomain> (raw)
In-Reply-To: <E1E927D0-2415-4F81-9F1E-18DAC01A1BC1@cs.stanford.edu>

Am Montag, den 28.08.2006, 20:11 -0700 schrieb Ted Kremenek:
> On Aug 25, 2006, at 4:31 AM, skaller wrote:
> 
> > Thus, from a software engineering viewpoint, nominal typing
> > is not a viable option .. which is one reason programming
> > in Java or C++ using OO sucks.
> >
> > In Ocaml, it works much better because you can actually
> > write algorithms which work with many different types,
> > provided only they support the 'right methods'.
> 
> While the structural typing in Ocaml is wonderful (I really love it),  
> there are missing features of the OO system in OCaml that can be  
> particularly bothersome, and are worth considering when comparing the  
> OO features of Ocaml with other languages (including those that use  
> nominal typing).

That sounds a bit like as if the OO language with more features was the
better one. The problem is that certain features are incompatible with
each other, at least in a practical sense, i.e. you cannot have good and
efficient implementations for all.

> For example, from what I can tell it appears that Ocaml lacks real  
> support for "downcasts" in the language, which require run-time type  
> information (RTTI) and run-time checks.  

In theory, RTTI is possible in O'Caml. But it is very costly: Object
types are complex structures and not only names. So any downcast would
be a very expensive operation (a full type check).

> In the context of structural  
> typing, I am talking about "casting" an object with a type with a  
> given set of method signatures to another type with an extended set  
> of method signatures.  Whether or not you agree downcasts are a good  
> thing, it is one thing to take into account when comparing the OO  
> features of different languages (and this is a feature that both C++  
> and Java have that OCaml does not).  In general, I don't believe the  
> OO system in Ocaml supports any kind of RTTI, which enables features  
> such as downcasts and reflection.  All of the type checking of  
> objects in OCaml is static, which is very nice but often insufficient.

Please note that OCaml is not only OO, so if you observe that you need
downcasts often, you probably have an inappropriate programming style.

For example, if you want to have a user-extensible data structure, you
normally implement it with modules and parametric polymorphism. If the
user of this structure wants to store different things into the same
structure, one can define a variant type. (Well, I know that OO
enthusiasts have a lot of prejudices against variants, mostly because
they never saw which role variants can play in a polymorphism-rich
language.)

> Actually, if I am wrong about this I would be very happy if someone  
> out there can point this out.  Certainly one can implement downcasts  
> using Obj.magic and some hand-crafted RTTI, but that is obviously not  
> a desired solution.

Certainly not this way. Simply use exceptions for home-made RTTI:

class type foo = ...

exception Foo of foo

class foo_class : foo =
object(self)
   ...
   method downcast = raise(Foo(self : #foo :> foo))
end


let downcast_foo (obj : < downcast : unit; ..>) =
  try obj # downcast
  with Foo x -> x
     | _ -> failwith "This is not a foo!"


Although this is restricted to monomorphic types please note that the
other languages you mention only have this sort of types.

Gerd
-- 
------------------------------------------------------------
Gerd Stolpmann * Viktoriastr. 45 * 64293 Darmstadt * Germany 
gerd@gerd-stolpmann.de          http://www.gerd-stolpmann.de
Phone: +49-6151-153855                  Fax: +49-6151-997714
------------------------------------------------------------


  parent reply	other threads:[~2006-08-29 12:03 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-25  7:51 David Baelde
2006-08-25 11:31 ` [Caml-list] " skaller
2006-08-29  3:11   ` Ted Kremenek
2006-08-29  5:53     ` skaller
2006-08-30 23:57       ` brogoff
2006-08-29 12:03     ` Gerd Stolpmann [this message]
2006-08-29 17:56       ` Ted Kremenek
2006-08-29 18:13       ` Ted Kremenek
2006-08-31  1:11     ` Jacques Garrigue
2006-08-31  5:18       ` skaller
2006-08-31  6:36         ` Jacques Garrigue
2006-08-31  7:15           ` skaller

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=1156853008.21883.84.camel@localhost.localdomain \
    --to=info@gerd-stolpmann.de \
    --cc=caml-list@inria.fr \
    --cc=david.baelde@ens-lyon.org \
    --cc=kremenek@cs.stanford.edu \
    --cc=skaller@users.sourceforge.net \
    /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).