vote up 15 vote down star
15

I just came from Simple Design and Testing Conference. In one of the session we were talking about evil keywords in programming languages. Corey Haines, who proposed the subject, was convinced that if statement is absolute evil. His alternative was to create functions with predicates. Can you please explain to me why if is evil.

I understand that you can write very ugly code abusing if. But I don't believe that it's that bad.

flag

73  
if statements are evil in the way hammers are evil. Some people might misuse them, but they're an essential tool. – Dominic Rodger Oct 12 at 12:08
16  
So some guy throws out an assertion without back up or explaining why? – Crises of Identity Oct 12 at 12:08
8  
I'm very suspicious of sweeping statements like the above. I don't mind preferences, and suggestions as to why you may not want to use a particular tool/feature etc. But a dogmatic stamp of 'evil' turns me off (I don't know if he qualified this at all, btw). – Brian Agnew Oct 12 at 12:12
7  
@e.c.ho - there is never anything wrong with an assertion without justification. ;) – Dominic Rodger Oct 12 at 12:13
4  
"If" statements don't kill programs: Bad programmers kill programs! – Jay Oct 12 at 14:11
show 13 more comments

18 Answers

vote up 13 vote down check

One of common refactoring practices is to Replace conditional with polymorphism, meaning it should lead to cleaner and more maintainable code.

I consider refactoring an if statement if I clearly see that there is a branching in behavior based on a type-code. If I believe that my future modifications won't benefit much from that change, I leave it, or I just refactor it when there is a need to do it.

It is simply quicker to do it sometimes, and in simple cases it doesn't do much harm. So, a summary would be: you need to have a purpose for refactoring.

link|flag
vote up 76 vote down

"f" is the sixth letter of the alphabet. "i" is the ninth letter. 9 rotated by half is six. Half is the opposite of two. Two sixes plus six = 666 The Number Of The Beast. It's pretty obvious that "if" is evil.

link|flag
1  
Oh deer jeebus, it's all perspex now! – Crises of Identity Oct 12 at 12:35
4  
I find this amusing, but this should really be CW. – Jason Baker Oct 12 at 12:36
I've changed it for you. Somehow marking it as community wiki doesn't show up as an edit, but I have changed it. – Kinopiko Oct 12 at 12:41
1  
Some things are pretty obvious. – Groo Oct 12 at 13:23
1  
I don't know how I failed to see it myself. – Vadim Oct 12 at 13:56
show 2 more comments
vote up 46 vote down

There is another sense in which if can be evil: when it comes instead of polymorphism.

E.g.

 if (animal.isFrog()) croak(animal)
 else if (animal.isDog()) bark(animal)
 else if (animal.isLion()) roar(animal)

instead of

 animal.emitSound()

But basically if is a perfectly acceptable tool for what it does. It can be abused and misused of course, but it is nowhere near the status of goto.

link|flag
4  
I agree with this one. It's the same problem I have with switch statement. In this case we can a strategy pattern. – Vadim Oct 12 at 12:20
1  
I've had a professor who said exactly that - polymorphism should be used to hide type `if`s. He even warned not to use `is(obj is Foo), because this reflection implied a design flaw. – Kobi Oct 12 at 12:36
1  
+1 for replacing if with a more generic inheritance solution, but I think Corey has been talking about FP more than anything else. – Lee B Oct 12 at 12:46
2  
In dynamic languages, if(obj is Foo) is quite sensible, since you don't have typed parameters. Most of the time, you really want to duck-type instead, but sometimes with built-in types, nothing but the real thing will suffice, and in such circumstances, you want to raise an error for anything but Foo, and for that you need if(obj is Foo). – Bob Aman Oct 12 at 13:14
1  
Originally, when books/people said that "if" was bad, it was exactly in this context of polymorphism; which I totally agree with. At some point later, some people repeated that without knowing the original context nor why, which is a shame. – Bruno Rothgiesser Oct 12 at 13:52
show 3 more comments
vote up 12 vote down

I think it depends on what you're doing to be honest.

If you have a simple if..else statement, why use a predicate?

If you can, use a switch for larger if replacements, and then if the option to use a predicate for large operations (where it makes sense, otherwise your code will be a nightmare to maintain), use it.

This guy seems to have been a bit pedantic for my liking. Replacing all if's with Predicates is just crazy talk.

link|flag
8  
I'm not fan of switch statements. I prefer to use strategy pattern instead when I can. – Vadim Oct 12 at 12:12
3  
I'm with Kyle, it's just crazy talk. You can't program without conditionals in the way that you can program without GOTOs. Switches, predicates, dispatch tables, etc, are just syntactic sugar for IF. – High-Performance Mark Oct 12 at 12:25
Beyond that conditional jumps perform better than v-table lookups and method calls – Matthew Whited Oct 12 at 13:22
@High-Performance Mark: I disagree, predicates are not syntactic sugar for IF. They allow decoupling of code which would otherwise be placed in a single if/switch block, possibly scattered all over the program. – Groo Oct 12 at 13:34
@Matthew: static methods perform better than instance methods, but that is not something that you should consider when programming. @Kyle: I wouldn't say that using predicates would make your code a nightmare, quite the opposite actually, but their use is simply not always justified (due to extra work involved in refactoring when not necessary). – Groo Oct 12 at 14:05
show 1 more comment
vote up 11 vote down

A good quote from Code Complete:

"Code as if whoever maintains your program is a violent psychopath who knows where you live." --Anonymous

IOW, keep it simple. If the readability of your application will be enhanced by using a predicate in a particular area, use it. Otherwise, use the 'if' and move on.

link|flag
1  
+1 LoooooooooooooooL – Groo Oct 12 at 13:22
Ah, but the quote from Code Complete contains an if statement and is therefore evil. :-) – Jason Baker Oct 17 at 21:53
he he...... :^) – j0rd4n Oct 18 at 7:05
vote up 9 vote down

There is the Anti-If campaign which started earlier in the year. The main premise being that many nested if statements often can often be replaced with polymorphism.

I would be interested to see an example of using the Predicate instead. Is this more along the lines of functional programming?

link|flag
1  
Hadn't even heard of the anti-if campaign. Seems a bit extreme, but I agree with the basic tenants of what they're saying. – Jason Baker Oct 12 at 12:25
4  
This looks and sounds like another for-profit subreligion started in hopes of getting coders to buy books about something that they'll better and more completely learn with practice. – Mike Burton Oct 12 at 12:32
1  
Looks like they're not anti-if, they're anti-switch-written-as-ifs. – Alex Feinman Oct 12 at 12:35
1  
I haven't heard of the campaign, but I ripped up some hugely complex code full of if blocks recently, and replaced it with OOP. The code went from incomprehensible buggy rubbish to a solution that was very elegant, clean, easy to understand, and easy to extend. Definitely recommended. if(possible) ;) – Lee B Oct 12 at 12:48
2  
sigh So, basically, I have to radically complicate my code just to get rid of an 'If' statement? This is tantamount to employing code obfuscation to satisfy code purists. Thank you, but no. – Mike Hofer Oct 12 at 15:17
show 3 more comments
vote up 4 vote down

I'll agree with you; he was wrong. You can go too far with things like that, too clever for your own good.

Code created with predicates instead of ifs would be horrendous to maintain and test.

link|flag
vote up 4 vote down

Just like in the bible verse about money, if statements are not evil -- the LOVE of if statements is evil. A program without if statements is a ridiculous idea, and using them as necessary is essential. But a program that has 100 if-else if blocks in a row (which, sadly, I have seen) is definitely evil.

link|flag
vote up 3 vote down

I have to say that I recently have begun to view if statements as a code smell: especially when you find yourself repeating the same condition several times. But there's something you need to understand about code smells: they don't necessarily mean that the code is bad. They just mean that there's a good chance the code is bad.

For instance, comments are listed as a code smell by Martin Fowler, but I wouldn't take anyone seriously who says "comments are evil; don't use them".

Generally though, I prefer to use polymorphism instead of if statements where possible. That just makes for so much less room for error. I tend to find that a lot of the time, using conditionals leads to a lot of tramp arguments as well (because you have to pass the data needed to form the conditional on to the appropriate method).

link|flag
2  
Martin Fowler says comments are a sweet smell not a bad smell. Let me quote from the "bad smells" chapter in Refactoring. "...comments aren't a bad smell: indeed they are a sweet smell... [but] they are often used as a deodorant. It's surprising how often you look at thickly commented code and notice that the comments are there because the comments are bad." – MarkJ Oct 13 at 11:52
1  
@MarkJ finally! Someone actually quoting Fowler correctly. +1. – reccles Oct 14 at 23:22
@MarkJ: I agree. 100% – Jason Baker Oct 15 at 1:11
vote up 3 vote down

Predicates come from logical/declarative programming languages, like PROLOG. For certain classes of problems, like constraint solving, they are arguably superior to a lot of drawn out step-by-step if-this-do-that-then-do-this crap. Problems that would be long and complex to solve in imperative languages can be done in just a few lines in PROLOG.

There's also the issue of scalable programming (due to the move towards multicore, the web, etc.). If statements and imperative programming in general tend to be in step-by-step order, and not scaleable. Logical declarations and lambda calculus though, describe how a problem can be solved, and what pieces it can be broken down into. As a result, the interpreter/processor executing that code can efficiently break the code into pieces, and distribute it across multiple CPUs/cores/threads/servers.

Definitely not useful everywhere; I'd hate to try writing a device driver with predicates instead of if statements. But yes, I think the main point is probably sound, and worth at least getting familiar with, if not using all the time.

link|flag
vote up 3 vote down

I find it amusing that half of these responses couldn't even be written if we didn't use the word if itself.

Therefore, the answers themselves are evil.

We are all going to Hell.

link|flag
vote up 2 vote down

The only problem with a predicates (in terms of replacing if statements) is that you still need to test them:

function void Test(Predicate<int> pr, int num) 
{
    if (pr(num))
    { /* do something */ }
    else
    { /* do something else */ }
}

You could of course use the terniary operator (?:), but that's just an if statement in disguise...

link|flag
1  
With lazy evaluation or if expressions have no side effects, you could also use predicates returning venerable Lambda booleans, where true = (a,b) => a and false = (a,b) => b, but that's also just an 'if' in disguise. – outis Oct 12 at 12:20
vote up 2 vote down

Hmmm

Perhaps with quantum computing it will be a sensible strategy to not use IF statements but to let each leg of the computation proceed and only have the function 'collapse' at termination to a useful result.

Regards

Mark

link|flag
vote up 2 vote down

if is not evil(I also hold that assigning morality to code-writing practices is asinine...).

Mr. Haines is being silly and should be laughed at.

link|flag
+1 for your thoughts on morality. – Chris Lutz Oct 12 at 17:15
+1 for refreshing – reccles Oct 14 at 23:24
vote up 2 vote down

IMO: I suspect he was trying to provoke a debate and make people think about the misuse of 'if'. No one would seriously suggest such a fundamental construction of programming syntax was to be completely avoided would they?

link|flag
On the one hand I agree with you, on the other hand i'm sure they were saying that about gotos 10-15 years ago :), +1 – RCIX Nov 6 at 10:13
vote up 1 vote down

It probably comes down to a desire to keep code cyclomatic complexity down, and to reduce the number of branch points in a function. If a function is simple to decompose into a number of smaller functions, each of which can be tested, you can reduce the complexity and make code more easily testable.

link|flag
vote up 1 vote down

'if' isn't the code smell so much as indentation is.

If it needs an indented block, it probably needs to be extracted into a method.

link|flag
vote up 0 vote down

Good that in ruby we have unless ;)

But seriously probably if is the next goto, that even if most of the people think it is evil in some cases is simplifying/speeding up the things (and in some cases like low level highly optimized code it's a must).

link|flag

Your Answer

Get an OpenID
or

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