292 lines
6.5 KiB
OCaml
292 lines
6.5 KiB
OCaml
(* Le sous-typage est "syntaxique" *)
|
|
fun (x : < x : int >) y z -> (y :> 'a), (x :> 'a), (z :> 'a);;
|
|
(* - : (< x : int > as 'a) -> 'a -> 'a * 'a = <fun> *)
|
|
|
|
(* Bizarrerie du typage des classes *)
|
|
class 'a c () =
|
|
method f = (new c (): int c)
|
|
and 'a d () =
|
|
inherit ('a) c ()
|
|
end;;
|
|
(* class 'a c (unit) = constraint 'a = int method f : 'a c end *)
|
|
(* class 'a d (unit) method f : int c end *)
|
|
|
|
(* 'a libre dans classe d *)
|
|
class 'a c () =
|
|
method f (x : 'a) = ()
|
|
and d () =
|
|
inherit ('a) c ()
|
|
end;;
|
|
|
|
(* Ferme self ! *)
|
|
(* Pas vraiment moyen de garder l'abbreviation en parametre *)
|
|
class virtual closed c ((x : 'a): < f : int >) : 'a =
|
|
and virtual closed d ((x : 'a): < f : int >) : 'a =
|
|
inherit c x
|
|
end;;
|
|
class virtual closed e x =
|
|
inherit d x
|
|
end;;
|
|
(* class virtual closed c (< f : int >) = virtual f : int end *)
|
|
(* class virtual closed d (< f : int >) = virtual f : int end *)
|
|
(* class virtual closed e (< f : int >) = virtual f : int end *)
|
|
|
|
(* Self unifie avec une abreviation *)
|
|
class virtual closed c ((x : 'a) : c) : 'a = end;;
|
|
|
|
(* Instancie #c *)
|
|
class virtual c () =
|
|
and 'a d () =
|
|
constraint 'a = #c
|
|
method f (x : #c) = (x#x : int)
|
|
end;;
|
|
(* class virtual c (unit) = end
|
|
class 'a d (unit) = constraint 'a = < x: int; .. > method f : 'a -> int end *)
|
|
|
|
class 'a c () =
|
|
constraint 'a = int
|
|
and 'a d () =
|
|
constraint 'a = 'b #c
|
|
end;;
|
|
(* class 'a c (unit) = constraint 'a = int end
|
|
class 'a d (unit) = constraint 'a = int #c end *)
|
|
|
|
(* Self en parametre *)
|
|
class closed 'a c (x : 'a) as self : 'b =
|
|
constraint 'a = 'b
|
|
method f = self
|
|
end;;
|
|
new c;;
|
|
(* class 'a c ('a) :'b = constraint 'a = 'a c method f : 'a end *)
|
|
(* - : ('a c as 'a) -> 'b c as 'b = <fun> *)
|
|
|
|
class x () =
|
|
virtual f : int
|
|
end;;
|
|
(* The class x should be virtual: its methods f is undefined *)
|
|
|
|
(* Methode g en trop *)
|
|
class virtual closed c ((x : 'a): < f : int >) : 'a =
|
|
and virtual closed d x : 'a =
|
|
inherit c x
|
|
method g = true
|
|
end;;
|
|
|
|
(* Contrainte non respectee *)
|
|
class 'a c () =
|
|
constraint 'a = int
|
|
method f x = (x : bool c)
|
|
end;;
|
|
|
|
(* Differentes contraintes *)
|
|
class ('a, 'b) c () =
|
|
constraint 'a = int -> 'c
|
|
constraint 'b = 'a * <x : 'b> * 'c * 'd
|
|
method f (x : 'a) (y : 'b) = ()
|
|
end;;
|
|
class ('a, 'b) d () =
|
|
inherit ('a, 'b) c ()
|
|
end;;
|
|
|
|
(* Contrainte non generique *)
|
|
let x = ref [];;
|
|
class 'a c () =
|
|
method f = (x : 'a)
|
|
end;;
|
|
|
|
(* Abreviations *)
|
|
type 'a c = <f : 'a c; g : 'a d>
|
|
and 'a d = <f : int c>;;
|
|
type 'a c = <f : 'a c; g : 'a d>
|
|
and 'a d = <f : 'a c>;;
|
|
type 'a c = <f : 'a c>
|
|
and 'a d = <f : int c>;;
|
|
type 'a u = < x : 'a>
|
|
and 'a t = 'a t u;;
|
|
type 'a u = 'a
|
|
and 'a t = 'a t u;;
|
|
|
|
type t = <x : 'a> as 'a;;
|
|
type 'a u = 'a;;
|
|
fun (x : t) (y : 'a u) -> x = y;;
|
|
fun (x : t) (y : 'a u) -> y = x;;
|
|
(* - : t -> t u -> bool = <fun> *)
|
|
|
|
(* Modules *)
|
|
module M =
|
|
struct
|
|
class ('a, 'b) c x (y: 'b) =
|
|
constraint 'a = int -> bool
|
|
val x = []
|
|
val y = y
|
|
method f (x : 'a) = ()
|
|
method g = y
|
|
end
|
|
end;;
|
|
module M' = (M :
|
|
sig
|
|
class virtual ('a, 'b) c (int) ('b) =
|
|
constraint 'a = int -> bool
|
|
val x : float list
|
|
val y : 'b
|
|
method f : 'a -> unit
|
|
method g : 'b
|
|
end
|
|
end);;
|
|
class ('a, 'b) d () y = inherit ('a, 'b) M.c () y end;;
|
|
class ('a, 'b) e () y = inherit ('a, 'b) M'.c 1 y end;;
|
|
(new M.c () "a")#g;;
|
|
(new M'.c 1)#g;;
|
|
(new d () 10)#g;;
|
|
(new e () 7.1)#g;;
|
|
open M;;
|
|
(new c () true)#g;;
|
|
|
|
(* #cl quand cl est fermee *)
|
|
module M = struct class closed 'a c () = method f (x : 'a) = () end end;;
|
|
module M' =
|
|
(M : sig class closed 'a c (unit) = method f : 'a -> unit end end);;
|
|
fun x -> (x :> 'a #M.c);;
|
|
fun x -> (x :> 'a #M'.c);;
|
|
class 'a c (x : 'b #c) = end;;
|
|
class closed 'a c (x : 'b #c) = end;;
|
|
|
|
(* Ordre de calcul *)
|
|
class c () = method f = 1 and d () = method f = 2 end;;
|
|
class e () = inherit c () inherit d () end;;
|
|
(new e ())#f;;
|
|
class c () = val x = - true val y = -. () end;;
|
|
|
|
class c () = method f = 1 method g = 1 method h = 1 end;;
|
|
class d () = method h = 2 method i = 2 method j = 2 end;;
|
|
class e () =
|
|
method f = 3
|
|
inherit c ()
|
|
method g = 3
|
|
method i = 3
|
|
inherit d ()
|
|
method j = 3
|
|
end;;
|
|
let e = new e ();;
|
|
e#f, e#g, e#h, e#i, e#j;;
|
|
|
|
class c a = val x = 1 val y = 1 val z = 1 val a = a end;;
|
|
class d b = val z = 2 val t = 2 val u = 2 val b = b end;;
|
|
class e () =
|
|
val x = 3
|
|
inherit c 5
|
|
val y = 3
|
|
val t = 3
|
|
inherit d 7
|
|
val u = 3
|
|
method x = x
|
|
method y = y
|
|
method z = z
|
|
method t = t
|
|
method u = u
|
|
method a = a
|
|
method b = b
|
|
end;;
|
|
let e = new e ();;
|
|
e#x, e#y, e#z, e#t, e#u, e#a, e#b;;
|
|
|
|
class c (x : int) (y : int) =
|
|
val x = x
|
|
val y = y
|
|
method x = x
|
|
method y = y
|
|
end;;
|
|
class d x y = inherit c x y end;;
|
|
let c = new c 1 2 in c#x, c#y;;
|
|
let d = new d 1 2 in d#x, d#y;;
|
|
|
|
(* Parametres n'apparaissant pas dans le type de l'objet *)
|
|
class 'a c (x : 'a) = end;;
|
|
new c;;
|
|
|
|
(* Variables privees *)
|
|
module type M = sig
|
|
class c (unit) = val x : int end
|
|
class d (unit) = inherit c val private x : int val x : bool end
|
|
end;;
|
|
class c (x : int) =
|
|
val private mutable x = x
|
|
method get = x
|
|
method set y = x <- y
|
|
end;;
|
|
let c = new c 5;;
|
|
c#get;;
|
|
c#set 7; c#get;;
|
|
|
|
class c () = val x = 1 val y = 1 method c = x end;;
|
|
class d () = inherit c () val private x method d = x end;;
|
|
class e () =
|
|
val x = 2 val y = 2 inherit d () method x = x method y = y
|
|
end;;
|
|
let e = new e () in e#x, e#y, e#c, e#d;;
|
|
|
|
(* Oubli de variables dans l'interface *)
|
|
module M :
|
|
sig
|
|
class c (unit) =
|
|
method xc : int
|
|
end
|
|
end =
|
|
struct
|
|
class c () =
|
|
val x = 1
|
|
method xc = x
|
|
end
|
|
end;;
|
|
class d () =
|
|
val x = 2
|
|
method xd = x
|
|
inherit M.c ()
|
|
end;;
|
|
let d = new d () in d#xc, d#xd;;
|
|
|
|
class virtual 'a matrix (sz, init : int * 'a) =
|
|
val m = Array.create_matrix sz sz init
|
|
method add (mtx : 'a matrix) = (mtx#m.(0).(0) : 'a)
|
|
end;;
|
|
|
|
class c () = method m = new c () end;;
|
|
(new c ())#m;;
|
|
module M = struct class c () = method m = new c () end end;;
|
|
(new M.c ())#m;;
|
|
|
|
type uu = A of int | B of (<leq: 'a> as 'a);;
|
|
|
|
class virtual c () : 'a = virtual m : 'a end;;
|
|
module S = (struct
|
|
let f (x : #c) = x
|
|
end : sig
|
|
val f : #c as 'a -> 'a
|
|
end);;
|
|
module S = (struct
|
|
let f (x : #c) = x
|
|
end : sig
|
|
val f : #c -> #c
|
|
end);;
|
|
|
|
module M = struct type t = int class t () = end end;;
|
|
|
|
fun x -> (x :> < m : 'a -> 'a > as 'a);;
|
|
|
|
fun x -> (x : int -> bool :> 'a -> 'a);;
|
|
fun x -> (x : int -> bool :> int -> int);;
|
|
fun x -> (x : < > :> < .. >);;
|
|
fun x -> (x : < .. > :> < >);;
|
|
|
|
let x = ref [];;
|
|
module F(X : sig end) =
|
|
struct type t = int let _ = (x : < m : t> list ref) end;;
|
|
x;;
|
|
|
|
type 'a t;;
|
|
fun (x : 'a t as 'a) -> ();;
|
|
fun (x : 'a t) -> (x : 'a); ();;
|
|
type 'a t = < x : 'a >;;
|
|
fun (x : 'a t as 'a) -> ();;
|
|
fun (x : 'a t) -> (x : 'a); ();;
|