Is there a quick way to select the longer of two strings? I want to circumvent having to do
if(string1 > string2)
do a;
else if(string2 > string1)
do b;
|
|
String have a method
Edit: I misunderstood your question. This would be a shorter way to write it using a ternary operator:
I don't know why you are looking for a shorter way to write it since your original way gives much more readability than using a ternary operator. If the reason is that you're going to get the longest string many times I'd recommend to extract the comparison to a method that returns the longest string instead. E.g:
|
||||
|
|
|
If you care about whether it's a tie, you do need to do both comparisons. If you don't care if it's a tie, you can drop the second comparison. A tie will then be the same as the second string being longer. |
|||
|
|
|
If your doA() or doB() return values of the same super type, you could always use the ternary:
|
|||
|
|
|
Instead
|
|||
|
|
|
Since you're going to work with the longer string, this might do the trick:
But I would prefer to use the two ifs for readability reasons. |
|||
|
|
|
|||||||||
|
|
I believe no, but you could simplify it a bit:
|
|||||||||||
|
|
Others already pointed out to ternary if, so here another solutions. Note, that I'm not advocating it, as the readability may be worse than your original code. I'm just listing different option. You can try something along the following lines:
|
|||
|
|
|
Your code isn't valid. You can't equate
Anyway, you can't really write this any shorter, nor should you for readability purposes. |
|||||||||||||||
|