I have the following Shape hierarchy:
public abstract class Shape
{ ... }
public class Rectangle : Shape
{ ... }
public class Circle : Shape
{ ... }
public class Triangle : Shape
{ ... }
I have implemented the following functionality to determine if two shapes are intersecting. I use the following IsOverlapping extension method, which uses dynamic to call the appropriate overloaded IsOverlappingSpecialisation method at runtime. I believe this is called double dispatching.
static class ShapeActions
{
public static bool IsOverlapping(this Shape shape1, Shape shape2)
{
return IsOverlappingSpecialisation(shape1 as dynamic, shape2 as dynamic);
}
private static bool IsOverlappingSpecialisation(Rectangle rect, Circle circle)
{
// Do specialised geometry
return true;
}
private static bool IsOverlappingSpecialisation(Rectangle rect, Triangle triangle)
{
// Do specialised geometry
return true;
}
This means I can do the following:
Shape rect = new Rectangle();
Shape circle = new Circle();
bool isOverlap = rect.IsOverlapping(circle);
The problem I face now, is that I will have to also implement the following in ShapeActions for circle.IsOverlapping(rect) to work:
private static bool IsOverlappingSpecialisation(Circle circle, Rectangle rect)
{
// The same geometry maths is used here
return IsOverlappingSpecialisation(rect, circle);
}
This is redundant (as I will need to do this for every new shape created). Is there a way I could possibly get around this? I thought of passing in a Tuple parameter into IsOverlapping, but I still have problems. Essentially I want overloading to occur based on unique unordered parameter sets (I know this is not possible, so looking for a workaround).
dynamichere rather than just switching on your types? (Or providing method overrides?) – Rawling Nov 22 '12 at 14:27Shape. I need the runtime object type to dispatch the correct method. – davenewza Nov 23 '12 at 7:12