vote up 0 vote down star

I have to implement the following in a switch statement:

switch(num)
{
  case 4:
    // some code ;
    break;
  case 3:
    // some code ;
    break;
  case 0:
    // some code ;
    break;
  case < 0:
    // some code ;
    break;
}

Is it possible to have the switch statement evaluate case < 0? If not, how could I do that?

flag

2  
Please don't flag your question as "Urgent", even if it is for you: catb.org/~esr/faqs/… – Joachim Sauer Oct 12 at 13:52

7 Answers

vote up 3 vote down check

The only way I could think of (and I really don't recommand it), would be as follows:

int someValue;

switch (Math.Max(someValue, -1))
{
    case -1:
        // will be executed for everything lower than zero.
        break;

    case 0:
       // will be executed for value 0.
       break;

    case 1:
       // will be executed for value 1.
       break;

    default:
       // will be executed for anything else.
       break;
}
link|flag
Why am I getting downvoted? – Oliver Hanappi Oct 12 at 13:53
Why not just Math.Max(someValue, -1) ? Then he doesn't need to worry about the +1 offset... – JustLoren Oct 12 at 13:54
Didn't downvote you but I think it's just Bad Style. – chakrit Oct 12 at 13:55
I think it's bad style too, so I stated in my answer that i really don't recommand that way. And Math.Max(x, -1) is really better than 0. – Oliver Hanappi Oct 12 at 13:56
@Oliver: probably because your code is pretty close to obfuscation. It's not immediately visible what's happening here. The other solutions provided here are much more readable. – Joachim Sauer Oct 12 at 13:56
vote up 18 vote down

You can't - switch/case is only for individual values. If you want to specify conditions, you need an "if":

if (num < 0)
{
    ...
}
else
{
    switch(num)
    {
        case 0: // Code
        case 1: // Code
        case 2: // Code
        ...
    }
}
link|flag
Thank you very much – pewned Oct 12 at 13:52
15  
or even switch(num) { case 0: case 1: default: if (num < 0) {..} } – roe Oct 12 at 13:53
@roe: Yes, I considered giving that form too. Ran out of time though :) – Jon Skeet Oct 12 at 14:49
vote up 3 vote down

You will have to use if, wether you want or not. Switch is only capable of comparing your value to constant values.

link|flag
1  
Not true -- you can use a ternary operator to consolidate the less-than-zero case into a single value, and evaluate that in the switch. – Charles Duffy Oct 12 at 13:54
This is true. It's just a restriction of the language. You can actually do this in VB.Net, as well as other things like using value ranges. Like C#, if has to compare against literal value, but there are more compare operations available. – Andy McCluggage Oct 12 at 14:00
Really Charles? Interesting. I did not know that. – Andy McCluggage Oct 12 at 14:01
1  
Just to be nit-picky, saying "constant values (literals)" is an error. You were doing great right up until the parenthetical. The parenthetical implies that "literals" and "constant values" are synonyms when in fact literal constants are a subset of constant values. All literals are constants, but not all constants are literals. The switch statement requires constants, but does not require literals. – Eric Lippert Oct 12 at 14:18
Thanks for clarifying, I'll edit my answer. – Maximilian Mayerl Oct 12 at 14:29
show 1 more comment
vote up 4 vote down

If your num can't be less than zero:

public int GetSwitch(int num) { return num < 0 ? -1 : num; }
switch(GetSwitch(num))
{
case 4: // some code ; break;
case 3:// some code ; break;
case 0: // some code ; break;
case -1 :// some code ; break;
}

If it can, use some other "non-existent" number such as int.MinValue.

link|flag
That's what I was going to suggest -- but why put the ternary in a different function? – Charles Duffy Oct 12 at 13:53
interesting solution +1, although I personally feel the extra function call clutters the view a bit, switch (num < 0 ? -1 : num) just feels more explict. – roe Oct 12 at 13:57
I'm a big follower of SRP and DRY - so even unconsciously I separate one behavior from another unrelated behavior. GetSwitch(), for example, can be reused, and what if you need two switches - do you copy/paste your ternary into there? I don't consider copy/pasting a good practice. – queen3 Oct 12 at 13:59
Just name it GetMeaningfulSwitchName() (e.g. GetOrderTypeSwitch) and this will make more sense. Maybe even put this into the entity itself, like Order.GetTypeRank(). – queen3 Oct 12 at 14:01
2  
DRY is of course good, however actually repeating "GetSwitch(num)" is more repeating than num<0?-1:num (which is two characters less)... :) All jokes aside, I think in this case, not having the result of GetSwitch immediately deducable (e.g. if you're using it somewhere else as well) hurts more than helps. But that's only MHO. – roe Oct 12 at 14:03
show 2 more comments
vote up 9 vote down

You could do something like this at the end of your switch statement:

default:
    if(num < 0)
    {
        ... // Code
    }
    break;
link|flag
vote up 2 vote down

The other way around would be possible also (relating to Jon Skeet's answer):

switch(num)
{
  case a:
      break;
  default:
      if( num < 0 )
      {}
   break;
}
link|flag
vote up 0 vote down

You cannot use comparisons in switches like you could in VB, you have 2 options here, replace the value you switch on with a known value and use that or - if you mean all other cases - you can use the default clause:

switch(num)
{
  case 4:
    // some code ;
    break;
  case 3:
    // some code ;
    break;
  case 0:
    // some code ;
    break;
  default:
    // some code ;
    break;
}

Note that this does not exactly like you asked for: any values other than 0,3,4 will end up in the deafult: clause.

link|flag

Your Answer

Get an OpenID
or

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