From: Andrei Alexandrescu (andrei@cs.washington.edu)
Date: Mon Oct 21 2002 - 09:56:25 PDT
No waxing here, but Cecil is da bomb! Predicate-based inheritance is very
powerful!
There's a problem of which solution I believe can be devised with
predicates, but I can't find it.
Suppose I have the classic Shape hierarchy in a CAD program used for
designing processors. There's a Rectangle class, a Line class and so on.
Sometimes, I need to process all elements that are square. Now, there could
be Rectangles that happen to have w = h, as well as some bona fide Square
objects that are square by design (always). I want to iterate over both
types in a shot and do something with them.
The trick is to implement BonaFideSquare so as not to waste space; assume
there are tons of such BonaFideSquare objects and you need to store the
minimum information for each.
So what's needed here is an object Square without data, an object
BonaFideSquare that contains a point and an integer (origin and width), and
another object Rectangle that contains a point and two integers (origin,
width, height). When width = height, Rectangle should automagically inherit
Square so it can be processed as such.
What would be a solution in Cecil for that? I tried a number of approaches,
but I couldn't find the space-saving one.
Andrei
_______________________________________________
Cecil mailing list
Cecil@cs.washington.edu
http://majordomo.cs.washington.edu/mailman/listinfo/cecil
This archive was generated by hypermail 2.1.5 : Mon Oct 21 2002 - 10:01:35 PDT