Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
* Overriding with subtypes
@ 1999-08-30 16:54 Gert Smolka
  1999-08-31 13:48 ` Didier.Remy
  0 siblings, 1 reply; 2+ messages in thread
From: Gert Smolka @ 1999-08-30 16:54 UTC (permalink / raw)
  To: caml-list

It should be ok to override a method of type t
with a method of a subtype of  t.  In fact,
that happens in

class c  = object(self) method a = self end
class c' = object(self) inherit c method a = self method b = 1 end

since c' is a proper subtype of c.  This is accepted by
Ocaml.  However,

class d  = object method a = new c end
class d' = object inherit d method a = new c' end

is rejected.  Why?  I would expect that this is a
limitation that is due to the type inferencer.

Gert Smolka




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1999-08-31 17:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-08-30 16:54 Overriding with subtypes Gert Smolka
1999-08-31 13:48 ` Didier.Remy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox