Example - Method Inheritance
To inherit or not to inherit
(area my-rectangle) => 100 ; wrong!
(defmethod area ((object rectangle))
(* (width object) (height object)))
(area my-rectangle) => 120
Previous slide
Next slide
Back to first slide
View graphic version