vote up 0 vote down star

I have this code:

field = string.Format(Str, value1, value2,
        found == true ? fieldName : "", found  == true ? "product" : "");

Is there a way to combine the two found == true ternary operation into a more succinct piece of code?

flag

58% accept rate

9 Answers

vote up 7 vote down check

Long lines with multiple ternary operators can be really illegible. Line breaks help a little with readability.

field = string.Format(Str,
    value1,
    value2,
    found ? fieldName : "",
    found ? "product" : "");
link|flag
Thank you! That's worth an upvote. – David Stratton Sep 15 at 21:44
vote up 19 vote down

You don't need the == true bit:

field = string.Format(Str, value1, value2, found ? fieldName : "", found ? "product" : "");

However, in my view the following is easier to read:

if (found) {
    field = string.Format(Str, value1, value2, fieldName, "product");
}
else {
    field = string.Format(Str, value1, value2, "", "");
}
link|flag
2  
+1 for readability. The ? has it place, but.... – Kenny Sep 15 at 21:40
Much better! +1 – David Stratton Sep 16 at 4:18
vote up 6 vote down

This is just an opinion but... YUK! I hate reading code like this.

Ternary operators may make for less code, but readability is suffering here. Don't go for less lines of code if it hurts readability.

link|flag
vote up 2 vote down

What about:

field = found ? string.Format(Str, value1, value2, fieldName, "product")
              : string.Format(Str, value1, value2, "", "");

Only one ternary, more readable than the original example, but I would consider a if/else statement for readability...

link|flag
Well, that does give him what he asked for, but it's a bad use of the ternary operator. – Larsenal Sep 15 at 21:41
Very nice and readable and still uses ternary operator. – Cem Kalyoncu Sep 15 at 21:42
+1 - That's an interesting approach that had never occurred to me before for handling these sorts of things. – Dominic Rodger Sep 15 at 21:44
1  
@Larsenal - why is that bad? – Dominic Rodger Sep 15 at 21:45
Although it's somewhat a stylistic preference, I feel the ternary operator is best suited to cases where you want make simple assignments. In my mind, this version reads "Assign one of two strings based on the value of found." What I'm inferring about the intent of the code feels more like it should say "Assign a string, and differentiate individual parts based on the value of found." I may be reading too much into the example, but my comment reflects my initial gut instinct. – Larsenal Sep 15 at 22:05
vote up 1 vote down

You can abbreviate it like so:

field = string.Format(Str, value1, value2, found ? fieldName : "", found ? "product" : "");
link|flag
vote up 1 vote down

Stop comparing found to true. You want the condition on whether or not the item was found, not whether or not found is true:

found ? fieldName : string.Empty
link|flag
vote up 0 vote down

Comparing to true is unnecessary:

field = string.Format(Str, value1, value2, found ? fieldName : "", found ? "product" : "");
link|flag
vote up 0 vote down

Since String.Format takes a params array, the one major variation not yet suggested would be

field = string.Format(Str, found
                      ? new object[] {value1, value2, fieldName, "product"}
                      : new object[] {value1, value2, string.Empty, string.Empty});
link|flag
vote up 0 vote down

That line of code took my manual parser a few moments longer to digest than I would like. I'm all for succinct and elegant coding, but wouldn't you rather come across this in a few months time, albeit over a few more lines?

if (found)
// Use empty strings for fieldName and productName
field = String.Format(Str, value1, value2, fieldName, productName);
else
// Use the fieldName and productName in the string
field = String.Format(Str, value1, value2, String.Empty, String.Empty);

Just my personal taste, but I know which one I'd rather encounter.

link|flag

Your Answer

Get an OpenID
or

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