vote up 1 vote down star

I really really like the conditional operator in C#. It makes my life very much easier in writing logic such as this:

public  string FormattedFileName
    {
        get
        {
            return string.Format("{0}_{1}_{2}_{3}.xls", 
            DateTime.Now.Month.ToString().Length == 1 
             ? "0" + DateTime.Now.Month.ToString()
             : DateTime.Now.Month.ToString(), 
            DateTime.Now.Day.ToString().Length == 1 
             ? "0" + DateTime.Now.Day.ToString()
             : DateTime.Now.Day.ToString(), 
            DateTime.Now.Year.ToString(), 
            "DownLoaded_From_Clients");
        }
    }

Of course, that means I lose the readability of the code. Anyway, I am just curious what opinion other fellow developers have on this approach of writing code. Thanks. I appreciate both negative and positive comments equally.

flag

48% accept rate
That's the "conditional operator", actually. – Neil Butterworth Apr 7 at 14:21
3  
in the same way that "=" is "the binary operator"? – Neil Butterworth Apr 7 at 14:27
2  
@rossfabricant: There's nothing wrong with suggesting people be accurate with technical terminology. Anyone referring to "the ternary operator" is going to look pretty silly if a second one is ever introduced. – Jon Skeet Apr 7 at 14:40
2  
That is some awful code you wrote there. – Robert S. Apr 7 at 15:05
1  
Shiva, try this instead return string.Format( "{0:MM_dd_yyyy}_DownLoaded_From_Clients.xls", DateTime.Now) – Charles Bretana Apr 7 at 15:21
show 14 more comments

closed as exact duplicate by chaos, Mihai Limbasan, divo, George Stocker, Bill the Lizard Apr 7 at 15:05

17 Answers

vote up 43 vote down check

Like it ? Use it : Don't

// if (Like it) then (Use it) else (Don't)
link|flag
sharp and concise. – xtofl Apr 7 at 14:28
I'd +1 for humour alone, but consideration for others is an important part of coding. – annakata Apr 7 at 14:29
@annakata, I agree that setting coding standards guidelines is important. Of course, I would vote against including the rule "don't use the ternary operator" in them. – Daniel Daranas Apr 7 at 14:35
Teehee - v.good :-) – Gordon Mackie JoanMiro Apr 7 at 14:46
3  
(Like it) ? Use it : Don't – d03boy Apr 9 at 14:27
show 4 more comments
vote up 19 vote down

When you need it, the ternary operator is invaluable. However, I think that there are often better ways to express yourself. In the example you gave, why not use a format string that will do exactly what you want: "{0:00}_{1:00}_{2}_{3}.xls", allowing you to simplify your code significantly?

link|flag
vote up 11 vote down

Comic book guy says. "Worst use of ternary operator ever."

link|flag
I could not agree more... – Richard E Apr 7 at 14:38
I dont know about "worst" but +1 for answering in the form of a Simpsons character. – Neil N Apr 7 at 14:43
+1 for the Comic Book Guy reference – Gordon Mackie JoanMiro Apr 7 at 14:46
vote up 10 vote down

If you wanted to make it more readble you could always factor out the calls into getCurrentMonth(), getCurrentYear, getCurrentDay calls....

link|flag
1  
This. Readability is considerably improved by reducing the terms to descriptively named helper methods. – annakata Apr 7 at 14:24
vote up 8 vote down

The example you have is an abuse of the conditional operator,

It can be expressed much more clearly in this way:

public string FormattedFileName
{
    get {
       return DateTime.Now.ToString("MM_dd_yyyy") +
          "_DownLoaded_From_Clients.xls";
    }
}

I find the conditional operator quite useful and use it often. When used correctly it can help simplify code by making it more concise.

In general, I will avoid chaining multiple conditionals in the same statement, it quickly gets very confusing, resulting in code that can not be maintained.

I also find the ?? very useful and quite often find ternaries that can easily be replaced with ??.

For example:

a == null? "empty" : a

can be replaced with:

a ?? "empty"

link|flag
vote up 5 vote down

Readability may be achieved through use of indentation, whitespace, and, as Dave said, comments.

link|flag
vote up 3 vote down

I only use it for simple if statements, two at most. Any more than that and I'd rather write it out the long way than to have it look like what you posted. Then again I try not to have more than two levels of nested if statements in the first place, so its never really come up.

link|flag
vote up 3 vote down

I'm all for using the conditional operator but you don't need it here...

return string.Format("{0}_{1}_{2}_{3}.xls", 
    DateTime.Now.Month.ToString("00"), 
    DateTime.Now.Day.ToString("00"), 
    DateTime.Now.Year, 
    "DownLoaded_From_Clients");
link|flag
vote up 3 vote down

I really don't like how you've used it. I use it when I can easily fit it on one line rather than using a multiline if-statement.

link|flag
vote up 3 vote down

My personal rule of thumb is that if it's blatantly obvious what the ternary does, then it's ok. If it's crammed into one line just so the coder could use a ternary, then it should be a bracketed if statement.

link|flag
why the downvote? Don't downvote and run! – Neil N Apr 9 at 14:30
vote up 2 vote down

When taking a look in the 'functional' world, where you can't 'do' things conditionally, the conditional operator is very common. In one way or another, I have the impression that the functional paradigm is gaining interest, because it takes out the temporal control flow caused by "if (this) dothis else dothat" statements. It makes it easier to really define what you mean instead of telling the computer what to do.

Readability is one issue, though, in languages that don't fully support this.

Debuggeability is another: in e.g. C++, you can't put a breakpoint on just one of the branches.

link|flag
vote up 1 vote down

Comment your code if you're worried about readability, otherwise I see no reason not to use it.

link|flag
vote up 1 vote down

I love the tertiary operator. It is only a problem when you are not familiar with the notation. It is difficult at times to find documentation on the lonely operator, but if it were used more in documentation and books I believe that it would gain much more popularity.

link|flag
vote up 1 vote down

A few parenthesis help readability immensly.

Consider adding them to help clarify exactly what your alternation operator is doing, and you should be fine. :)

link|flag
vote up 1 vote down

Why not do something more like this?

public  string FormattedFileName
{
    get
    {
        return string.Format(
            "{0}_{1}_{2}_{3}.xls", 
            DateTime.Now.Month.ToString().Length == 1 ?
                "0" + DateTime.Now.Month.ToString() :
                DateTime.Now.Month.ToString(), 
            DateTime.Now.Day.ToString().Length == 1 ?
                "0" + DateTime.Now.Day.ToString() :
                DateTime.Now.Day.ToString(), 
            DateTime.Now.Year.ToString(), 
            "DownLoaded_From_Clients");
    }
}

Note I didn't change the code at all, just the formatting. As noted, you don't need to use the conditional operator here, but a little care with your indentation can improve readability immensely. I love the conditional operator, but if you run all your code together in a dense block with no indentation, it's going to be unreadable no matter what operators you are using.

link|flag
Yes, and it is still terrible, unreadable code. – Richard E Apr 7 at 14:39
Terrible? Yes. Unreadable? Well, it's at least sort of almost semi-readable now. – Adam Jaskiewicz Apr 7 at 14:44
vote up 1 vote down

I don“t like the ternary operator at all - it is not very readable and I get really grumpy when I do bugfixes and find stuff like that.

link|flag
vote up 0 vote down

It's called ternary operator (we don't call binary code the secondary code, after all), and it has been asked before:

http://stackoverflow.com/questions/522919/is-this-a-reasonable-use-of-the-ternary-operator

link|flag
No, it's called the conditional operator. It's a ternary operator, but its name is the conditional operator. See the C# 3.0 spec section 7.13. – Jon Skeet Apr 7 at 14:39
Oh Damn. You just got Skeeted. – Neil N Apr 7 at 14:41
To quote section 7.13: "The ?: operator is called the conditional operator. It is at times also called the ternary operator." Very funny, indeed. – cdonner Apr 8 at 1:22
You're right about the cardinal number, but wrong about the operator name. – xtofl Apr 8 at 6:02
I guess John Skeet is always right, even when he is not right ... – cdonner Apr 8 at 15:34

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