Tagged Questions
The switch tag has no wiki summary.
39
votes
4answers
1k 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 ...
33
votes
9answers
11k views
Eclipse HotKey: how to switch between tabs?
How to switch opened windows in Eclipse? There is Ctrl+F6, but it's asking me which one i want, but i want switch it like tabs in browser or window in operating system (Cmd/Win+Tab) without ...
24
votes
4answers
652 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
14answers
6k 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 ...
16
votes
15answers
1k 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 ...
15
votes
7answers
12k 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 ...
13
votes
10answers
825 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 ...
13
votes
13answers
1k 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?
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
3answers
635 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 ...
11
votes
4answers
2k views
Why can't your switch statement data type be long, Java?
Here's an excerpt from Sun's Java tutorials:
A switch works with the byte, short, char, and int primitive data types. It also works with enumerated types (discussed in Classes and Inheritance) and ...
10
votes
8answers
839 views
C#: 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 ...
9
votes
7answers
638 views
Better: switch-case or if-else? [closed]
Possible Duplicate:
If/Else vs. Switch
I have two codes here, i just wanted to ask which of the two is better in terms of writability(ease of writing the codes) and in terms of readability ...
9
votes
2answers
211 views
In PHP what's faster, big Switch statement, or Array key lookup
In PHP what's faster, making a large switch statement, or setting up an array and looking up the key?
Now before you answer, I am well aware that for pure lookups the array is faster. But, this is ...
8
votes
5answers
298 views
Switch case on type c#
Hello suppose i get a big if/else on class type. it's there a way to do it with a switch case ?
Example :
function test(object obj)
{
if(obj is WebControl)
{
}else if(obj is TextBox)
{
}
else ...
8
votes
4answers
276 views
Is it worth changing from java/spring/hibernate to rails for a program that is undergoing massive changes?
I have a project whose core domain is dramatically changing. It's possible to use 50% of the core functionality from this site and just add the 50% new functionality, but I am starting to consider ...
8
votes
8answers
483 views
Question about switch{} case in C?
I am reading some text in C language. The text says that switch{} case can only accept integer type.
I am just curious about why switch{} case does not accept other types such as float or string. Are ...
8
votes
9answers
439 views
Is there a way in c# to use strings in a switch statement that are in an array or something similiar?
Im trying to find a solution for this problem. This is my example code:
class Program
{
private string Command;
private static string[] Commands = { "ComandOne", "CommandTwo", "CommandThree", ...
8
votes
2answers
1k views
Why is the Switch module deprecated in Perl?
Why was the Switch module deprecated in Perl 5.12?
I know that a switch/case be made with elsif, but I don't like that very much.
8
votes
4answers
1k views
Using continue in a switch statement
I want to jump from the middle of a switch statement, to the loop statement in the following code:
while (something = get_something())
{
switch (something)
{
case A:
case B:
...
7
votes
4answers
56 views
Can a type declaration be made in a Switch statement?
I am using XCode 4.0.2 for a iOS4 project.
I have a standard "Switch" statement
switch (i) {
case 0:
int a = 0;
break
...
}
This give me an error "Expected expression" on int ...
7
votes
8answers
406 views
How to avoid long switch statements? C++
I am working on a "dictionary" for my class. I have an int array called NumOfWordsInFile[] where NumOfWordsInFile[0] corresponds to how many words are in A.txt and NumOfWordsInFile[25] corresponds to ...
7
votes
9answers
2k views
Advanced switch statement within while loop?
I just started C++ but have some prior knowledge to other languages (vb awhile back unfortunately), but have an odd predicament. I disliked using so many IF statements and wanted to use switch/cases ...
7
votes
10answers
809 views
C# switch statement
Should I throw NotImplementedException() on default: if I have cases for all possible enum types?
7
votes
5answers
727 views
Why do I need to use break?
I was wondering why C# requires me to use break in a switch statement although a fall-through semantics is by definition not allowed. hence, the compiler could generate the break at the end of each ...
7
votes
4answers
880 views
.NET: switch vs dictionary for string keys
I've got a situation where I have a business object with about 15 properties of different types. The business object also has to implement an interface which has the following method:
object ...
6
votes
3answers
228 views
why i cant instantiate objects inside a switch-case block
my code has 3 classes n_hexa,n_octa,n_bin. The code is here
switch(choice)
{
case 1: cin>>n;
n_hexa nx(n);
break;
case 2: cin>>n;
n_octa no(n);
break;
case 3: ...
6
votes
4answers
426 views
Declaring variables inside C switch/case
Well, this is not actually a question..
I have just occasionally found out that there's an interesting way to declare local variables inside a switch/case block. Instead of using braces inside every ...
6
votes
7answers
374 views
indexed switch statement, or equivalent? .net, C#
(added updates below)
I'm wanting to build a method which accepts a string param, and an object which I would like to return a particular member of based on the param. So, the easiest method is to ...
6
votes
2answers
324 views
c# switch statement is return suitable to replace break
Is this an appropriate way to handle c# switch statements or is an explicit break required still? reference
public static string ToRegistryString(AliceKey.AliceKeyPaths aliceKeyPath)
{
...
6
votes
5answers
530 views
What is the preferred way to indent cases in a switch?
As I was writing another switch in Eclipse, I once again came across a rather weird (to me, at least) default indentation, which is applied to 'switch' statements:
switch (i) {
case 1:
...
case ...
6
votes
6answers
828 views
Switch optimization for many cases guarantees equal access time for any case? ( C++ )
I've seen answers here for specific languages, about switches with more than 5 cases being optimized with jump tables to guarantee constant access time for any case.
Is that so for C / C++?
Is it in ...
5
votes
2answers
65 views
PHP Switch with 2 values
is there a way to the php's SWITCH but with 2 values? Here's what I'm looking for
switch(a, b){
case 1,2: some code... ; break;
case 3,4: some code... ; break;
case 3,6: some code... ; ...
5
votes
3answers
104 views
How much programmer “assist” does Java normally need for a switch to JIT to a dispatch table?
I understand that Java does optimizations across the board and can optimize switches depending on how many cases there are, whether the switch is sparse or dense, and if the code is even hot enough ...
5
votes
10answers
252 views
Enum.Parse() or Switch
For convert a string to enum is better:
this code:
colorEnum color = (colorEnum)Enum.Parse(typeof(colorEnum), "Green");
or this:
string colorString = ...
colorEnum color;
switch ...
5
votes
10answers
205 views
Architecturally speaking, how should I replace an extremely large switch statement with something more manageable?
EDIT 1: Forgot to add the nested property curve ball.
UPDATE: I have chosen @mtazva's answer as that was the preferred solution for my specific case. In retrospect, I asked a general question with a ...
5
votes
4answers
156 views
Giant switch statement for constructors
I have a container which holds a bunch of pointers to a base class, and a function which takes some input and returns a class which is a subclass of the base class. Which subclass it returns depends ...
5
votes
3answers
617 views
Why “final static int” can be used as a switch's case constant but not “final static <your enum>”
Why is this int switch valid:
public class Foo {
private final static int ONE = 1;
private final static int TWO = 2;
public static void main(String[] args) {
int value = 1;
...
5
votes
3answers
248 views
If block vs Switch-Case block
Generally is there a performance difference between using an if block with many else ifs compared to a switch case block? Do some languages or style conventions prefer one over the other?
...
5
votes
14answers
416 views
Switch statement with returns — code correctness
Let's say I have code in C with approximately this structure:
switch (something)
{
case 0:
return "blah";
break;
case 1:
case 4:
return "foo";
break;
case 2:
...
5
votes
6answers
717 views
Alternative to the “switch” Statement
I do not want to use Switch in my code, so I'm looking for some alternative
Example with Switch:
function write(what) {
switch(what) {
case 'Blue':
alert ('Blue');
break;
...
...
4
votes
4answers
48 views
switching css for Javascript is disabled
I´m having a problem switching css when Javascript is disabled.
I have this code:
<style type="text/css">.nonjsonly{display:none;}.jsonly{display:inline;}</style>
...
4
votes
1answer
139 views
The C standard's word on the switch statement
Consider this code example:
char c = 0xff;
char mask = 0xfe;
switch ((unsigned)(c & mask)) {
case -2: /* do task 1 */ break;
default: /* do task 2 */
}
Let us assume that CHAR_BIT = 8 and the ...
4
votes
4answers
104 views
Switch Statement in C
I have the following if-statements:
if (strcmp(registerName, "zero"))
return 00000;
else if (strcmp(registerName, "at"))
return 00001;
else if (strcmp(registerName, ...
4
votes
2answers
79 views
Is it safe to assume strict comparison in a Javascript switch statement?
I have a variable that can either be boolean false, or an integer (including 0). I want to put it in a switch statement like:
switch(my_var){
case 0:
// Do something
break;
...
4
votes
5answers
512 views
Switch statement for greater-than/less-than
so I want to use a switch statement like this:
switch (scrollLeft) {
case (<1000):
//do stuff
break;
case (>1000 && <2000):
//do stuff;
break;
}
Now I know that ...
4
votes
1answer
147 views
Delphi: switch bands of CoolBar
What is an efficient way to change buttons (bands) in the CoolBar (the red rectangle) while switching among items in the TreeView (the purple rectangle). I want to use one set of buttons for every ...
4
votes
2answers
140 views
How to use switch with extern constants?
Some code.cpp file contains
extern const int v1;
extern const int v2;
extern const int v3;
extern const int v4;
int _tmain(int argc, _TCHAR* argv[])
{
int aee = v1;
switch (aee)
{
...
4
votes
4answers
351 views
How Java manages the multithread access to elements of arrays?
Hello fellow programmers. I have already asked one question, but despite the really good answers I've got I couldn't fix my problem.
Then, I took the time to refactor my code in such a way that would ...
4
votes
3answers
197 views
Python: Using a dictionary as switch not working
I'm a 'python neophyte' and trying to grasp the inner workings of the dictionary datatype. Last night I was attempting to use one as a control structure (i.e. switch statement) for keyboard input on ...