This site tickled my sense of humour - http://www.antiifcampaign.com/ but can polymorphism work in every case where you would use an if statement?
feedback
|
|
Smalltalk, which is considered as a "truly" object oriented language, has no "if" statement, and it has no "for" statement, no "while" statement. There are other examples (like Haskell) but this is a good one. Quoting Smalltalk has no “if” statement:
I definitely recommend reading the whole post and Code is an object from the same author as well. | |||||||||||||||||||
feedback
|
|
answer:That website is against using if statements for checking if an object has a specific type. This is completely different from Being against explanation of the why behind polymorhishm: Take this situation:
Its much better if you don't have to worry about the specific type of an object, generalizing how objects are processes.
This moves the logic of how to draw a shape into the shape class itself, so we can now treat all shapes the same. This way if we want to add a new type of shape, all we have to do is write the class and give it a draw method instead of modifying every conditional list in the whole program. This idea is everywhere in programming today, the whole concept of interfaces is all about polymorphism. (Shape is an interface defining a certain behavior, allowing us to process any type that implements the Shape interface in our method.) Dynamic programming languages take this even further, allowing us to pass any type that supports the necessary actions into a method. Which looks better to you: (python style pseudo-code)
or using polymorphism:
You can now use any 2 types that support the * operator, allowing you to use the method with types that haven't event been created yet. | |||||||||||||
feedback
|
|
Though not OOP-related: In Prolog, the only way to write your whole application is without if statements. | |||
|
feedback
|
|
Yep. Simple branch avoidance in C:
can be re-written as
However, if you want to see some real anti-if fu then read this Oh and on the OOP question - I'll replace a branch mis-prediction with a virtual function call? No thanks.... | |||||||||
feedback
|
|
I assume you are actually asking about replacing if statements that check types, as opposed to replacing all if statements. To replace an if with polymorphism requires a method in a common supertype you can use for dispatching, either by overriding it directly, or by reusing overridden methods as in the visitor pattern. But what if there is no such method, and you can't add one to a common supertype because the super types are not maintained by you? Would you really go to the lengths of introducing a new supertype along with subtypes just to get rid of a single if? That would be taking purity a bit far in my opinion. Also, both approaches (direct overriding and the visitor pattern) have their disadvantages: Overriding the method directly requires that you implement your method in the classes you want to switch on, which might not help cohesion. On the other hand, the visitor pattern is awkward if several cases share the same code. With an if you can do:
How would you share the code with the visitor pattern? Call a common method? Where would you put that method? So no, I don't think replacing such if statements is always an improvement. It often is, but not always. | ||||
|
feedback
|
|
Yes actually, you can have a turing-complete language that has no "if" per se and only allows "while" statements: http://cseweb.ucsd.edu/classes/fa08/cse200/while.html As for OO design, it makes sense to use an inheritance pattern rather than switches based on a type field in certain cases... That's not always feasible or necessarily desirable though. @ennuikiller: conditionals would just be a matter of syntactic sugar:
if-then-else is a little more verbose:
the primitive data structure is a list of lists. you could say 2 scalars are equal if they are lists of the same length. you would loop over them simultaneously using the head/tail operators and see if they stop at the same point. of course that could all be wrapped up in macros. The simplest turing complete language is probably iota. It contains only 2 symbols ('i' and '*'). | |||||
feedback
|
|
You can define True and False with objects (in a pseudo-python):
I think it is an elegant way to construct booleans, and it proves that you can replace every if by polymorphism, but that's not the point of the anti-if campaign. The goal is to avoid writing things such as (in a pathfinding algorithm) :
But rather call a is_traversable method on each object. In a sense, that's exactly the inverse of pattern matching. "if" is useful, but in some cases, it is not the best solution. | |||
|
feedback
|
|
Haskell doesn't even have if statements, being pure functional. ;D | |||||||||||||
feedback
|
|
You can do it without In assembly, there's no In Haskell for instance, there's no explicit pseudo-haskell:
When you call So while languages like Haskell and SmallTalk don't have the usual C-style | |||||||||
feedback
|
|
I used to write code a lot as the recommend in the anti-if campaign, using either callbacks in a delegate dictionary or polymorphism. It's quite a beguiling argument, especially if you are dealing with messy code bases but to be honest, although it's great for a plugin model or simplifying large nested if statements, it does make navigating and readability a bit of a pain. For example F12 (Go To Definition) in visual studio will take you to an abstract class (or, in my case an interface definition). It also makes quick visual scanning of a class very cumbersome, and adds an overhead in setting up the delegates and lookup hashes. Using the recommendations put forward in the anti-if campaign as much as they appear to be recommending looks like 'ooh, new shiny thing' programming to me. As for the other constructs put forward in this thread, albeit it has been done in the spirit of a fun challenge, are just substitutes for an if statement, and don't really address what the underlying beliefs of the anti-if campaign. | ||||
|
feedback
|
|
This is actually a coding game I like to play with programming languages. It's called "if we had no if" which has its origins at: http://wiki.tcl.tk/4821 Basically, if we disallow the use of conditional constructs in the language: no if, no while, no for, no unless, no switch etc.. can we recreate our own IF function. The answer depends on the language and what language features we can exploit (remember using regular conditional constructs is cheating co no ternary operators!) For example, in tcl, a function name is just a string and any string (including the empty string) is allowed for anything (function names, variable names etc.). So, exploiting this we can do:
or in javascript we can abuse the loose typing and the fact that almost anything can be cast into a string and combine that with its functional nature:
Not all languages can do this sort of thing. But languages I like tend to be able to. | |||
feedback
|
|
I very seldom use | |||
|
feedback
|
|
The idea of polymorphism is to call an object without to first verify the class of that object.
| |||
|
feedback
|
|
It depends on the language. Statically typed languages should be able to handle all of the type checking by sharing common interfaces and overloading functions/methods. Dynamically typed languages might need to approach the problem differently since type is not checked when a message is passed, only when an object is being accessed (more or less). Using common interfaces is still good practice and can eliminate many of the type checking if statements. While some constructs are usually a sign of code smell, I am hesitant to eliminate any approach to a problem apriori. There may be times when type checking via if is the expedient solution. Note: Others have suggested using switch instead, but that is just a clever way of writing more legible if statements. | |||
|
feedback
|
|
There are some nice tricks you can do to remove branches from your code. Some of these techniques are outlined in this blog post. | |||
|
feedback
|
|
Well, if you're writing in Perl, it's easy! Instead of
you can use
;-) | |||
|
feedback
|
|
? // usually this operator gets me by ... though readability goes out the window | |||||||||
feedback
|