A colleague said he heard of a language that did not have the concept of "if". Is that possible? If so, what language is it?
|
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. Source: Without ifs |
|||||
|
|
C++ template programming does not have an 'if' construct but is Turing-complete via template specialization:
|
|||||
|
|
Besides perhaps Prolog, I don't know of any specific languages, but I can think of a few ways a language without if statements may work. In fact, you don't need loop constructs either. You obviously needs some way of conditional branches and looping. If, for example, you had the following features: functions, ML-style pattern matching on function arguments and tail-call optimization, you could program without if's or loops.
would become soemthing like
or with ML-like syntax:
Of course, you still need the usual comparison operators and then you can use simple true/false function argument pattern matching instead of conditionals. Or you could match on arbitrary values. Or the language could support guard expressions, which are basically if statements which determine if a function overload is valid or not. The example above is obviously contrived and the code without ifs/loops is a lot uglier and harder to understand than the original, but it demonstrates how you can make do. More or different language features may make it possible to write clean programs without if/loops. Another way would be something like this, if true == 1 and false == 0.
That is, store the true and false branch in a list or tuple or whatever you have that can be indexed by true and false and then use the result of the condition as the index, look up the branch and call the function. If your language supports macros, it may be possibly to translate traditional conditionals into this format. |
|||
|
|
|
Depends on what you mean by "if". Conditional control flow? Conditional branching at all? Any conditional behaviour? Languages that aren't centered around control flow (e.g. declarative, including functional, languages) obviously have no way of altering control flow conditionally. It works fine for them. Learn one if you don't believe it. It is possible, albeit hard to impractical, to get along without the classical "do this once if you. For example, you could emulate it with a while loop (turing complete languages need some way to loop) that makes sure the condition is false after the first iteration. Even brainfuck can do this (in fact, brainfuck programs must do this as there is no Lacking any way to change the behaviour/results based on runtime conditions would severaly limit the programs that could be written in it (perhaps even to the degree that it's no longer turing complete). There are such languages, but you propably wouldn't even recognize them as programming language. |
|||
|
|
|
I believe a language has to have some means of doing selection, in order to be Turing-Complete. However, that means would not have to be your classic if-statement form. Probably the most familiar example would be regular expression languages. (a | b*) makes a decision based on what's on the opposite sides of that |
|||
|
|
|
There are logical languages that consist of statements. The results to a query is a logical assessment that checks if the result CAN be assumed by the group of rules that were "coded" . Look at Prolog for example. |
|||
|
|
ifs? A language might not have an explicitifoperator, but every language must have some way of branching from one piece of code to two other pieces of code, or else every input to a program would always give the same output. – BlueRaja - Danny Pflughoeft Oct 19 '11 at 22:44