vote up 6 vote down star
2

I think of this as broken OOP. It's starting to grow like mold in our code base and I need to start talking with people about cleaning it up. Is there a common name for it?

public void eat(Fruit fruit) {

    if (fruit instanceof Banana) {
        ((Banana) fruit).peel();
    }
    else if (fruit instanceof Pineapple) {
        ((Pineapple) fruit).slice();
    }

    // ... etc ...

    else if (fruit instanceof Strawberry) {
        // n/a ;-)
    }

    fruit.eat();
}
flag

2  
PS: Just looking for terminology here, I know the refactoring to repair this example is to declare an abstract method "prepare()" on Fruit, and implement it accordingly ;-) – Mark Renouf Jul 22 at 15:26
Looks fair enough to me, fruit aren't polymorphic. If I tried to eat() a pineapple like I tried to eat() a strawberry, I'd have my eye out. – skaffman Jul 22 at 15:26
@skaffman - a code smell isn't something that's banned, it's something that needs a comment next to it explaining why it's okay this time. – Earwicker Jul 22 at 15:27
2  
@skaffman - That's the whole point of polymorphism - each fruit has a different implementation of 'eat()', if you will. – mackenir Jul 22 at 15:29
1  
Not sure about the exact terminology, but I would say people need to start using inheritance (or interfaces) or else they're going to eventually create a really confusing maintenance nightmare. :) – Brian MacKay Jul 22 at 15:31
show 2 more comments

9 Answers

vote up 7 vote down

It's called a "type switch", like a switch statement on the type of an object.

Another question that will probably be of interest to you.

link|flag
Ahh, Skeet to the rescue! Thanks for the link, I will have to decipher the C# stuff but I think that might be slightly relevant in our case. While we do control the types involved, I think we are lacking a layer... the types involved are persistent objects (Hibernate entities) and may not be appropriate to contain higher level logic like that. – Mark Renouf Jul 22 at 15:30
1  
Actually many people argue that persistent objects should have whatever logic they need to fit your needs; there's no good reason to keep the persistent objects "dumb". – Earwicker Jul 22 at 15:32
Good point. I share your view... though I see some benefits in more loosely coupling the two. It's quick and easy but suddenly there's lots of friction to change if there's stuff in the model which should not (or can't) be exposed to the view. Especially when using short cuts like XML serialization to implement a web service. – Mark Renouf Jul 22 at 16:06
vote up 1 vote down

"Replace conditional with Polymorphism" is the name of the refactoring you are thinking of. Can't think of the name of the smell.

It is discussed in Martin Fowlers book Refactoring: Improving the Design of Existing Code.

link|flag
vote up 1 vote down

I don't know that it has a name (Type Switch CS?), but there's an interesting discussion of it (in Java) here.

link|flag
vote up 1 vote down

Faked polymorphism?

link|flag
or perhaps "monomorphism"?? ;-) – Austin Salonen Jul 23 at 18:35
vote up 3 vote down

It is called downcasting. link1 link2

link|flag
No, that's what happens inside each if statement, not the name of the whole pattern. – Earwicker Jul 22 at 15:30
But in order to downcast to a specific type, you have to test to make sure it will succeed. I see the above example as multiple instances of the same bad practice, rather than one. – Joel B Fant Jul 22 at 15:33
Then you're missing the point - the solution is that the whole pattern gets replaced with a single call to a single virtual method, which is then implemented differently for each derived type. – Earwicker Jul 22 at 15:39
vote up 1 vote down

Its called, "Time to go buy a book and learn some design patterns". The Head First Design Patterns first chapter covers how to avoid this. Fruits extend Fruit, Prepare behaviors implementing PrepareBehavior. Inside your Fruit base class you could have (compose) whatever PrepareBehavior matches the fruit. (Strategy Pattern)

link|flag
vote up 1 vote down

I know what you're trying to ask, but the real problem is the design of your eat method and the architecture of your object hierarchy. There is no way to "eat a Fruit" in your architecture because each derived type of fruit has a different way of preparing itself to be eaten (one needs to be sliced, one needs to be pealed). The notion of eat (myFruit) itself is flawed.

You should change Fruit to have a PrepareToEat method. Each derived type of Fruit will implement PrepareToEat differently (bananas will peel, pineapples will slice). Then, eat can become an operation that can be done on a Fruit ...

public void Eat( Fruit f )
{ 
  f.PrepareToEat(); // implements the proper preparation peel, slice, etc.
  f.Eat();
}

Per comment: I see. It's an "incorrectly designed object hierarchy that violates the the Liskov Substitution Principle." Meyers writes extensively on this in Effective C++ and More Effective C++.

link|flag
Yes. I know the code is stinky. I was just asking what the smell is commonly called so I can go find more backing examples when advocating to have this cleaned up. – Mark Renouf Jul 22 at 16:08
vote up 0 vote down

It's just method overload replacement for dynamic OOP languages.

Nothing special. Quite common and fairly legal.

Look at any serious JavaScript code to see it in action (f.e. ExtJS).

link|flag
vote up 0 vote down

It's an ad-hoc implementation of the Lisp TYPECASE macro.

Of course, in Lisp it's much less verbose, and there's no casting (everything is basically generic by default), so while it's relatively uncommon, it doesn't have quite the stigma it does in statically-typed languages:

(typecase fruit
  (banana (peel fruit))
  (pineapple (slice fruit))
  (strawberry ()))
(eat fruit)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.