In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism

learn more… | top users | synonyms (2)

490
votes
6answers
90k views

How can I write a switch statement in Ruby?

How do I write a switch statement in Ruby?
291
votes
9answers
244k views

Switch Statement with Strings in Java

Why can't I switch on a String in Java? Is this functionality going to be put into a later Java version? Can someone point me to an article, or themselves explain why I can't do this, as in, the ...
194
votes
21answers
41k views

Why can't variables be declared in a switch statement?

I've always wondered this - why can't you declare variables after a case label in a switch statement? In C++ you can declare variables pretty much anywhere (and declaring them close to first use is ...
173
votes
4answers
5k views

Why does Java switch on ordinal ints appear to run faster with added cases?

I am working on some Java code which needs to be highly optimized as it will run in hot functions that are invoked at many points in my main program logic. Part of this code involves multiplying ...
156
votes
22answers
97k views

Replacements for switch statement in python?

I want to write a function in python that returns different fixed values based on the value of an input index. In other languages I would use a switch or case statement, but python does not appear to ...
109
votes
12answers
7k views

Is 'switch' faster than 'if'?

Is a switch statement actually faster than an if statement? I ran the code below on Visual Studio 2010's x64 C++ compiler with the /Ox flag: #include <stdlib.h> #include <stdio.h> ...
105
votes
13answers
58k views

Switch statement fallthrough in C#?

Switch statement fallthrough is one of my personal major reasons for loving switch vs. if/else if constructs. An example is in order here: static string NumberToWords(int number) { string[] ...
96
votes
16answers
28k views

C# - Is there a better alternative than this to 'switch on type'?

Seeing as C# can't switch on a Type (which I gather wasn't added as a special case because is-a relationships mean that more than one distinct case might apply), is there a better way to simulate ...
93
votes
12answers
8k views

switch / pattern matching idea

I've been looking at F# recently, and while I'm not likely to leap the fence any time soon, it definitely highlights some areas where C# (or library support) could make life easier. In particular, ...
89
votes
18answers
134k views

Multiple Cases in Switch:

I believe I've seen this somewhere, but I don't recall if it was a different language, or if I just can't remember the syntax well. Is there a way to fall through multiple case statements without ...
88
votes
13answers
44k views

Why doesn't Python have a switch statement? [closed]

What is the reason Python doesn't have switch statement?
79
votes
17answers
40k views

C# switch statement limitations - why?

When writing a switch statement there appears to be two limitations on what you can switch on and case statements. For example (and yes, I know, if you're doing this sort of thing it probably means ...
63
votes
11answers
60k views

Using Case/Switch and GetType to determine the object [duplicate]

Possible Duplicate: C# - Is there a better alternative than this to ‘switch on type’? If you want to switch on a type of object, what is the best way to do this? Code snippet private int ...
58
votes
4answers
4k views

Why does C# have break if it's not optional?

When I create a switch statement in VS2008 C# like this (contrived): switch (state) { case '1': state = '2'; case '2': state = '1'; } it complains that I'm not allowed to ...
57
votes
15answers
14k views

Is there any significant difference between using if/else and switch-case in C#?

What is the benefit/downside to using a switch statement vs. an if/else in C#. I can't imagine there being that big of a difference, other than maybe the look of your code. Is there any reason why ...
55
votes
2answers
19k views

Case in protected switch [duplicate]

Possible Duplicate: When converting a project to use ARC what does “switch case is in protected scope” mean? Got the following xcode: But when i try to put something in case 1 ...
55
votes
9answers
6k views

Switch statement: must default be the last case?

Consider the following switch statement: switch( value ) { case 1: return 1; default: value++; // fall-through case 2: return value * 2; } This code compiles, but is it valid ...
54
votes
3answers
2k views

Declaring and initializing variables within Java switches

I have a crazy question about Java switches. int key = 2; switch (key) { case 1: int value = 1; break; case 2: value = 2; System.out.println(value); ...
53
votes
22answers
24k views

Advantage of switch over if-else statement

What's the best practice for switch vs if for a 30 unsigned enumerations where about 10 have an expected action (that presently is the same action). Performance and space need to be considered but ...
51
votes
4answers
2k views

What is the purpose of the extra braces in Switch case?

I'm curious about this thing... see example: switch(x) { case(a): { //do stuff } break; case(b): //do stuff break; } All my life I've done it ...
51
votes
5answers
12k views

If vs. Switch Speed

Switch statements are typically faster than equivalent if-else-if statements (as e.g. descibed in this article) due to compiler optimizations. How does this optimization actually work? Does anyone ...
48
votes
3answers
10k views

Declaring variables inside a switch statement

I saw a few answers to this issue, and I get it — you can't declare and assign variables inside a switch. But I'm wondering if the following is correct at throwing an "error: expected expression ...
47
votes
8answers
146k views

SQL Switch/Case in where clause

I tried searching around but couldn't find anything that would help me out. I'm trying to do this in SQL: declare @locationType varchar(50); declare @locationID int; SELECT column1, column2 FROM ...
47
votes
11answers
44k views

Why switch statement cannot be applied on strings? [closed]

int main() { switch(std::string("raj")) //Compilation error - switch expression of type illegal { case"sda": } }
37
votes
9answers
49k views

How to use a switch case 'or' in PHP?

is there such thing (in PHP anyway) for an OR operator in a switch case? something like.. switch ($value) { case 1 || 2: echo 'the value is either 1 or 2'; break; }
35
votes
3answers
17k views

JavaScript or-expression in a switch case

How would you use a switch case when you need to test for "a" or "b" in the same case? switch (pageid) { case "listing-page" || "home-page": alert("hello"); break; case ...
35
votes
7answers
12k views

Variable declaration in c# switch statement

Why is it that in a c# switch statement, for a variable used in multiple cases, you only declare it in the first case? For example, the following throws the error "A local variable named 'variable' ...
35
votes
10answers
27k views

Status “S” in Subversion

At some point all files in my working copy got marked with "S" symbol as shown below: $ svn st M S AclController.php S InstallationController.php S CustomerController.php S ...
35
votes
5answers
11k views

Can I declare variables inside an Objective-C switch statement?

I think I'm going blind, because I can't figure out where the syntax error is in this code: if( cell == nil ) { titledCell = [ [ [ TitledCell alloc ] initWithFrame:CGRectZero ...
34
votes
15answers
16k views

How to break out of a loop from inside a switch?

I'm writing some code that looks like this: while(true) { switch(msg->state) { case MSGTYPE: // ... break; // ... more stuff ... case DONE: break; // **HERE, I ...
29
votes
1answer
2k views

Are .Net switch statements hashed or indexed?

Does .Net 4 (or any prior version) perform any sort of optimization on longer switch statements based on strings? I'm working around a potential performance bottleneck due to some long switch ...
28
votes
15answers
7k views

Why Switch/Case and not If/Else If?

This question in mainly pointed at C/C++, but I guess other languages are relevant as well. I can't understand why is switch/case still being used instead of if/else if. It seems to me much like ...
27
votes
21answers
2k views

How would you make this switch statement as fast as possible?

2009-12-04 UPDATE: For profiling results on a number of the suggestions posted here, see below! The Question Consider the following very harmless, very straightforward method, which uses a switch ...
27
votes
6answers
15k views

Can Objective-C switch on NSString?

Is there a more intelligent way to rewrite this? if ([cardName isEqualToString:@"Six"]) { [self setValue:6]; } else if ([cardName isEqualToString:@"Seven"]) { [self setValue:7]; } else if ...
24
votes
12answers
8k views

Should switch statements always contain a default clause?

In one of my first code reviews (a while back), I was told that it's good practice to include a default clause in all switch statements. I recently remembered this advice but can't remember what the ...
24
votes
4answers
891 views

Is the “switch” statement evaluation thread-safe?

Consider the following sample code: class MyClass { public long x; public void DoWork() { switch (x) { case 0xFF00000000L: // do whatever... ...
23
votes
2answers
36k views

Switch statement for string matching in JavaScript

How do I write a swtich for the following conditional? If the url contains "foo", then settings.base_url is "bar". The following is achieving the effect required but I've a feeling this would be ...
22
votes
12answers
5k views

C/C++: switch for non-integers

Often I need to choose what to do according to the value of a non-POD constant element, something like this: switch( str ) { case "foo": ... case "bar": ... default: ... } Sadly switch can ...
22
votes
8answers
3k views

Throwing exceptions in switch statements when no specified case can be handled

I've been writing C# for the last 8 years and have become quite the defensive OOP programmer. Working in a statically-typed language, you do things like validate arguments in methods and throw ...
20
votes
22answers
4k views

Does anyone disagree with the statement: “using switch is bad OOP style”?

I have seen it written in multiple threads/comments on stackoverflow that using switch is just bad OOP style. Personally I disagree with this. There will be many cases where you cannot add code (i.e. ...
20
votes
9answers
1k views

How to reduce if statements [closed]

The program below functions as necessary but how do I reduce the amount of if statements. I have been told that if your function contains 2 or more if statements then your doing it wrong. Any ...
20
votes
4answers
3k views

C# Switch statement with/without curly brackets… what's the difference?

Has C# always permitted you to omit curly brackets inside a switch() statement between the case: statements? What is the effect of omitting them, as javascript programmers often do? Example: ...
20
votes
11answers
39k views

Best way to do a PHP switch with multiple values per case?

How would you do this PHP switch statement? Also note that these are much smaller versions, the 1 I need to create will have a lot more values added to it. Version 1: switch ($p) { case ...
20
votes
3answers
6k views

Eclipse: Java Enum auto-completion of switch case

Is there a CTRL+space -like way of "auto-constructing" a switch case around a given Java Enum in Eclipse? I'd like a stub with all Enum cases... EDIT: Dupe of ...
19
votes
13answers
6k views

Why do we need break after case statements?

Why doesn't the compiler automatically put break statements after each code block in the switch? Is it for historical reasons? When would you want multiple code blocks to execute?
19
votes
1answer
36k views

Switch-Case for strings in Javascript not working as expected

So I have this problem with strings and switch-case, and I'll try to keep it as simple as possible. Here event.keyCode has the value "65", and is the result of a keydown event of 'a' (using JQuery). ...
19
votes
12answers
2k views

C++ Long switch statement or look up with a map?

In my C++ application, I have some values that act as codes to represent other values. To translate the codes, I've been debating between using a switch statement or an stl map. The switch would look ...
18
votes
15answers
3k views

Using default in a switch statement when switching over an enum

What is your procedure when switching over an enum where every enumeration is covered by a case? Ideally you'd like the code to be future proof, how do you do that? Also, what if some idiot casts an ...
18
votes
17answers
995 views

Is there programming language with better approach for switch's break statements?

It's the same syntax in a way too many languages: switch (someValue) { case OPTION_ONE: case OPTION_LIKE_ONE: case OPTION_ONE_SIMILAR: doSomeStuff1(); break; // EXIT the switch case ...
18
votes
4answers
4k views

Eclipse bug? Switching on a null with only default case

I was experimenting with enum, and I found that the following compiles and runs fine on Eclipse (Build id: 20090920-1017, not sure exact compiler version): public class SwitchingOnAnull { enum X ...

1 2 3 4 5 49