I am having trouble with the concept of interfaces interacting with polymorphic types (or even polymorphic interfaces). I'm developing in C# and would appreciate answers staying close to this definition, although i think that still gives plenty of room for everyone to put forth an answer.
Just as an example, let's say you want to make a program to paint things. You define an interface for the actor that Paints, and you define an interface for the subject which is painted, Furthermore you have some subjects which can be painted in a more specific way.
interface IPainter {
void paint(IPaintable paintable);
}
interface IPaintable {
void ApplyBaseLayer(Color c);
}
interface IDecalPaintable : IPaintable {
void ApplyDecal(HatchBrush b);
}
I can imagine making a painter similar to the following:
class AwesomeDecalPainter : IPainter
{
public void paint(IPaintable paintable) {
IDecalPaintable decalPaintable = (IDecalPaintable)paintable;
decalPaintable.ApplyBaseLayer(Color.Red);
decalPaintable.ApplyDecal(new HatchBrush(HatchStyle.Plaid, Color.Green));
}
}
Of course this will throw if paintable does not implement IDecalPaintable. It immediately introduces a coupling between the IPainter implementation and the IPaintable that it operates on. However I also don't think it makes sense to say that AwesomeDecalPainter is not an IPainter just because it's use is limited to a subset of the IPaintable domain.
So my question is really four-fold:
- Are interface compatible with polymorphism at all?
- Is it good design to implement an IPainter that can operate on IDecalPaintable?
- What about if it can exclusively operate on IDecalPaintable?
- Is there any literature or source code that exemplifies how interfaces and polymorphic types should interact?
IDecalPainter.paintis a bad design, see "What is the Liskov Substitution Principle?". What you should have is an overloadedpaintthat takes anIDecalPaintableso thatAwesomeDecalPaintercan accept bothIPaintables andIDecalPaintables. – outis May 27 '11 at 4:23IPaintershould be able topainton anyIPaintable. It makes perfect sense to say that anAwesomeDecalPainteris not anIPainterbecause it can't operate on allIPaintables. See the circle-ellipse problem, also known as the square-rectangle problem – outis May 27 '11 at 4:23paintmethod with anIPaintableargument that only works onIDecalPaintablebreaks not only the Liskov substitution principle, it breaks the type system. – outis May 27 '11 at 6:11