Tagged Questions
In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism
132
votes
3answers
24k views
98
votes
9answers
87k 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 ...
89
votes
11answers
4k 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>
...
89
votes
19answers
16k 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 ...
73
votes
12answers
6k 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, ...
68
votes
18answers
24k 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 ...
57
votes
20answers
23k 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 ...
55
votes
14answers
32k 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[] ...
53
votes
13answers
14k 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 ...
41
votes
15answers
7k 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 ...
39
votes
8answers
1k views
C switch statement: has default to 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 ...
37
votes
13answers
12k views
Why doesn't Python have a switch statement?
What is the reason Python doesn't have switch statement?
36
votes
10answers
32k views
Using Case/Switch and GetType to determine the object
If you want to switch on a type of object, what is the best way to do this?
Code snippet
private int GetNodeType(NodeDTO node)
{
switch (node.GetType())
{
case typeof(CasusNodeDTO):
...
29
votes
5answers
5k 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 ...
26
votes
16answers
39k 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 ...
25
votes
22answers
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 ...
25
votes
4answers
7k 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
...
24
votes
7answers
8k 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' ...
24
votes
8answers
69k 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 ...
23
votes
1answer
1k 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 ...
23
votes
2answers
5k 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 ...
21
votes
15answers
3k 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 ...
19
votes
22answers
3k 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. ...
18
votes
3answers
158 views
Why is a `switch` considered a looping structure for the purposes of `continue`?
I just got bit by assuming the following:
foreach ($arr as $key => $value) {
switch($key) {
// ... some other cases
default:
continue;
// ^== assumption: move on to the next ...
18
votes
17answers
855 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 ...
17
votes
9answers
14k views
Why switch statement cannot be applied on strings?
int main()
{
switch(std::string("raj")) //Compilation error - switch expression of type illegal
{
case"sda":
}
}
14
votes
8answers
499 views
Is there a way to make Objective-C support a multi-variable switch construct?
I was wondering: is there a way to make Objective-C support a multi-variable switch construct?
I mean, very often I have to deal with problems in which the solution depends on a pair of variables ...
14
votes
3answers
1k 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:
...
14
votes
12answers
955 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 ...
13
votes
4answers
667 views
why is break required after yield return in a switch statement
Can somebody tell me why compiler thinks that break is necessary after yield return in the following code?
foreach (DesignerNode node in nodeProvider.GetNodes(span, node => node.NodeType != ...
13
votes
6answers
2k views
Replace giant switch statement with what?
I have a code that parses some template files and when it finds a placeholder, it replaces it with a value. Something like:
<html>
<head>
<title>%title%</title>
...
12
votes
10answers
1k 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 ...
12
votes
12answers
26k views
Objective-C switch using objects?
I'm doing some Objective-C programming that involves parsing an NSXmlDocument and populating an objects properties from the result.
First version looked like this:
if([elementName ...
11
votes
3answers
333 views
Why switch is faster than if
I have found lots of books in java saying switch statement is faster than if else statement. But I didnot find antwhere saying why switch is faster than if.
Example
I have a situation i have to ...
11
votes
7answers
1k views
Switch statement without default when dealing with enumerations
This has been a pet peeve of mine since I started using .NET but I was curious in case I was missing something. My code snippet won't compile (please forgive the forced nature of the sample) because ...
11
votes
4answers
7k views
Obtain a switch/case behaviour in Perl 5
Is there a neat way of making a case or switch statement in Perl 5?. It seems to me they should include a switch on version 6..
I need this control structure in a script, and I've heard you can ...
11
votes
7answers
48k views
Switch/toggle div (jquery)
I wish to accomplish a simple task (I hope!)
I got two div tags and 1 anchor tags, like this:
<a href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
...
10
votes
2answers
333 views
What kind of neat use cases exist for given/when?
Perl 5.10 introduced a proper switch construct with given/when and it seems like a powerful tool.
Currently however, perldoc perlsyn lacks some good examples.
One case where I found it handy lately ...
10
votes
6answers
657 views
Better Alternative to Case Statement
I currently have a switch statement that runs around 300 odd lines. I know this is not as giant as it can get, but I'm sure there's a better way to handle this.
The switch statement takes an Enum ...
10
votes
5answers
12k views
Using Java Generics with Enums
Update: Thanks for everyone who helped out - the answer to this one lay in what I wasn't noticing in my more complex code and what I didn't know about the Java5 covariant return types.
Original ...
9
votes
6answers
1k views
C# Switch-case string starting with
Is there any way to make a case condition in a switch statement where you say if a string begins with something?
ex
Switch (mystring)
{
case("abc")://String begins with abc (abcd or abc1 or abcz ...
9
votes
3answers
2k views
What's the powershell syntax for multiple values in a switch statement?
I basically want to do this:
switch($someString.ToLower())
{
"y", "yes" { "You entered Yes." }
default { "You entered No." }
}
9
votes
6answers
1k views
Is using decimal ranges in a switch impossible in C#?
I'm just starting out learning C# and I've become stuck at something very basic.
For my first "app" I thought I'd go for something simple, so I decided for a BMI calculator.
The BMI is calculated ...
9
votes
9answers
304 views
Switch Statement in C#
Does anyone know if it's possible to include a range in a switch statement (and if so, how)?
For example:
switch (x)
{
case 1:
//do something
break;
case 2..8:
//do something ...
9
votes
10answers
2k views
Why no switch on pointers?
For instance:
#include <stdio.h>
void why_cant_we_switch_him(void *ptr)
{
switch (ptr) {
case NULL:
printf("NULL!\n");
break;
default:
...
9
votes
13answers
2k views
break in a case with return.. and for default
My OCD makes me add "break" when writing case statements, even if they will not be executed. Consider the following code example:
switch(option) {
case 1:
a = 1;
b = 7;
...
9
votes
3answers
5k views
How to get 'switch-case' statement functionality in Django templates?
I found a link to have a 'switch' tag in Django templates, but I was wondering if this can be somehow achieved without it. Using only the stuff which comes with Django? Basically is there other way ...
9
votes
4answers
20k 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;
}
8
votes
7answers
260 views
Is there a way to simplify this case statement?
I have this PHP case statement
switch ($parts[count($parts) - 1]) {
case 'restaurant_pos':
include($_SERVER['DOCUMENT_ROOT'] . '/pages/restaurant_pos.php');
break;
case ...
8
votes
8answers
397 views
Switch statement inside a switch statement (C#)?
I have to evaluate many conditions. In my case, I have to do something like this:
switch(id)
{
case 5:
// switch some other cases here
case 6:
// set some value
...
}
...