In many languages assignments are legal in conditions. I never understood the reason behind this. Why would you write:
if (var1 = var2) {
...
}
instead of:
var1 = var2;
if (var1) {
...
}
|
|
In many languages assignments are legal in conditions. I never understood the reason behind this. Why would you write:
instead of:
|
|||
|
|
|
|
It's more useful for loops than if statements.
Which would otherwise have to be written
|
||
|
|
|
The short answer is that Expression-oriented programming languages allow more succinct code. The don't force you to separate commands from queries. |
||
|
|
|
|
I find it most useful in chains of actions which often involve error detection, etc.
The alternative (not using the assignment in the condition) is:
With protracted error checking, the alternative can run off the RHS of the page whereas the assignment-in-conditional version does not do that. |
||
|
|
|
|
In PHP, for example, it's useful for looping through SQL database results:
This looks much better than:
|
||
|
|
|
GCC can help you detect (with -Wall) if you unintentionally try to use an assignment as a truth value, in case it recommends you write
I.e. use extra parenthesis to indicate that this is really what you want. |
|||
|
|
|
|
The idiom is more useful when you're writing a
or use a loop-and-a-half structure:
I would usually prefer the loop-and-a-half form. |
||
|
|
|
|
It's more useful if you are calling a function:
Sure, you can just put the n = foo(); on a separate statement then if (n), but I think the above is a fairly readable idiom. |
||
|
|
|
|
It can be useful if you're calling a function that returns either data to work on or a flag to indicate an error (or that you're done). Something like:
Personally it's an idiom I'm not hugely fond of, but sometimes the alternative is uglier. |
||
|
|