Some people would rather user if statements then a ternary operator because they say the increase complexity in your programs. I personally like ternary operators, what is your opinion? Should you use if statements or ternary operators?
|
|
|||
|
|
|
I love them, especially in type-safe languages. I don't see how this:
is any harder than this:
edit - I'd argue that ternary operators make everything less complex and more neat than the alternative. |
||
|
|
|
|
Like so many opinion questions, the answer is inevitably: it depends For something like:
I think that is much more concise (and quicker for me to parse) than:
Now if your conditional expression is complex, then the ternary operation is not a good choice. Something like:
is not a good candidate for the ternary operator. As an aside, if you are a C programmer, GCC actually has an extension that allows you to exclude the if-true portion of the ternary, like this:
Which will set |
||||||||
|
|
|
By the measure of cyclomatic complexity, the use of By other measures such as readability, maintainability, and DRY (Don't-Repeat-Yourself), either choice may prove better than the other. |
||
|
|
|
|
I've seen such beasts like (it was actually much worse since it was isValidDate and checked month and day as well, but I couldn't be bothered trying to remember the whole thing):
where, plainly, a series of if-statements would have been better (although this one's still better than the macro version I once saw). I don't mind it for small things like:
or even slightly tricky things like:
|
|||
|
|
|
|
If you're using the ternary operator for a simple conditional assignment I think it's fine. I've seen it (ab)used to control program flow without even making an assignment, and I think that should be avoided. Use an if statement in these cases. |
||
|
|
|
|
I like 'em. I don't know why, but I feel very cool when I use the ternary expression. |
||
|
|
|
|
For simple tasks like assigning a different value depending on a condition they're great. I wouldn't use them when there are longer expressions depending on the condition tho. |
||
|
|
|
|
If you and your workmates understand what they do and they aren't created in massive groups I think they make the code less complex and easier to read because there is simply less code. The only time i think ternary operators make code harder to understand is when you have about 3 or 4 or more in the one line. Most people don't remember that they are right based precedence and when you have a stack of them it makes reading the code a nightmare. EDIT: 5 in one group? What was I thinking!! thats way to much :) 3 or 4 is more reasonable. |
||
|
|
|
|
As others have pointed out they are nice for short simple conditions. I especially like them for defaults (kind of like the || and or usage in javascript and python), e.g.
Another common use is to initialize a reference in C++. Since references have to be declared and initialized in the same statement you can't use an if statement.
|
|||
|
|
|
A so many answers have said, it depends. I find that if the ternary comparison is not visible in a quick scan down the code, then it should not be used. As a side issue, I might also note that its very existence is actually a bit of an anomoly due to the fact that in C, comparison testing is a statement. In Icon, the
... which I find much more readable than a ternery comparison operator. :-) There was a discussion recently about the possibility of adding the Which means that if you could do that in C (or any of the other languages that have the ternery operator), then you wouldn't, in fact, need the ternery operator at all. |
||
|
|
|
|
No, ternary operators do not increase complexity. Unfortunately, some developers are so oriented to an imperative programming style that they reject (or won't learn) anything else. I do not believe that, for example:
is "more complex" than the equivalent (but more verbose):
or the even more awkward (which I've seen):
That said, look carefully at your alternatives on a case-by-case basis. Assuming a propoerly-educated developer, ask which most succinctly expresses the intent of your code and go with that one. |
||||||
|
|
|
I used to be in the “ternary operators make a line un-readable” camp, but in the last few years I’ve grown to like them when used in moderation. Single line ternary operators can increase readability if everybody on your team understands what’s going on. It’s a concise way of doing something without the overhead of lots of curly braces for the sake of curly braces. The two cases where I don’t like them: if they go too far beyond the 120 column mark or if they are embedded in other ternary operators. If you can’t quickly, easily and readably express what you’re doing in a ternary operator. Then use the if/else equivalent. |
||
|
|
|
|
It depends :) They are useful when dealing with possibly null references (btw: Java really needs a way to easily compare two possibly null strings). The problem begins, when you are nesting many ternary operators in one expression. |
||||
|
|
|
No (unless they're misused). Where the expression is part of a larger expression, the use of a ternary operator is often much clearer. |
||
|
|
|
|
I think it really depends on the context they are used in. Something like this would be a really confusing, albeit effective, way to use them:
However, this:
is perfectly reasonable. I personally think they should be used when they cut down on overly verbose IF statements. The problem is people are either petrified of them, or like them so much they get used almost exclusively instead of IF statements. |
||
|
|
|
|
No. They are hard to read. If/Else is much easier to read. This is my opinion. Your mileage may vary. |
||
|
|
|
|
string someSay = bCanReadThis ? "No" : "Yes"; |
||
|
|
|
|
In small doses they can reduce the number of lines and make code more readable; particularly if the outcome is something like setting a char string to "Yes" or "No" based on the result of a calculation. Example:
compared with:
The only bug that can occur in simple tests like that is assigning an incorrect value, but since the conditional is usually simple it's less likely the programmer will get it wrong. Having your program print the wrong output isn't the end of the world, and should should be caught in all of code review, bench testing and production testing phases. I'll counter my own argument with now it's more difficult to use code coverage metrics to assist in knowing how good your test cases are. In the first example you can test for coverage on both the assignment lines; if one is not covered then your tests are not exercising all possible code flows. In the second example the line will show as being executed regardless of the value of X, so you can't be certain you've tested the alternate path (YMMV depending on the ability of your coverage tools). This matters more with the increasing complexity of the tests. |
||
|
|
|
|
Excel does not give you a choice. Here is my favorite Excel macro. Can you figure out what it does? :-)
Please, before any more down-votes, read my comment. |
||||||||||
|
