Re: Solving the data inheritance problem
Kaba wrote:
A Shape can have an arbitrary number of control points and it can be
used to move them around without the need to know anything about the
subclass. Here's a more detailed example (only important pieces
given):
class Shape
{
public:
// This way the user can control the points movement.
const Point& getPoint(int pointId);
void setPoint(int pointId, const Point& that);
// This way the user gets a list of the control points
// available.
void getPoints(std:vector<int>& ids);
virtual void draw() const = 0;
protected:
// This interface is only available to derived classes
void swap(Shape& that)
{
points_.swap(that.points_);
}
// The creation returns a handle to the created point.
int createPoint();
void removePoint(int pointId);
private:
// Here we actually store the points.
std::map<int, Point> points_;
};
Consider the following example that shows why this design may not be
such a good idea after all:
class Square : public Shape
{
public:
Square(int width, Point topLeft);
Square(Square const& other);
virtual void draw() const;
};
Square CreateSquare()
{
Point leftTop(0,1);
Square square(1, leftTop);
std::vector<int> squarePointIDs;
square.getPoints(squarePointIDs);
assert(squarePointIDs.size() > 0);
// yee-haw!
Point invariantBreaker(42, 42);
square.setPoint(squarePointIDs[0], invariantBreaker);
return square;
}
void DrawSquare()
{
CreateSquare().draw(); // what the h...?!
}
This code is malicious for the purpose of demonstration, but it is not
hard to imagine how similar errors could be introduced inadvertently,
especially if you pass Squares around as Shapes.
--
Gerhard Menzl
Non-spammers may respond to my email address, which is composed of my
full name, separated by a dot, followed by at, followed by "fwz",
followed by a dot, followed by "aero".
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]