Tagged Questions
The switch-case tag has no wiki summary.
7
votes
1answer
10k 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).
...
7
votes
5answers
1k views
C# switch in lambda expression
Is it possible to ha ve a switch in a lambda expression ? IF not, why ? Resharper display it as an error.
6
votes
8answers
197 views
Why are different case condition bodies not in different scope?
Why are different case bodies not automatically in their own scope? For example, if I were to do this:
switch(condition) {
case CONDITION_ONE:
int account = 27373;
case CONDITION_TWO:
// ...
6
votes
4answers
13k views
Switch case in jquery
Am I writing the correct switch case?
var cnt = $("#div1 p").length;
alert(cnt);
switch (cnt) {
case (cnt >= 10 && cnt <= 20):
...
6
votes
4answers
2k views
How to make the C# Switch Statement use IgnoreCase
If I have a switch-case statement where the object in the switch is string, is it possible to do anyway ignoreCase compare?
I have for instance:
string s = "house";
switch (s)
{
case "houSe": s = ...
6
votes
4answers
6k views
switch case vs if else
I was wondering if there was any difference in the way the following code was compiled into assembly. I've heard that switch-case is more efficient than if else, but in this example I am not quite ...
5
votes
1answer
400 views
How do I replace a switch statement with IOC so I can maintain SOLID principle
I wanted to avoid the switch statement. I have over 30 document types. There is also a possibility I will need to add more document types moving forward. I would rather pass IDocument and have the ...
5
votes
4answers
272 views
How would I do an OR statement with a Switch case? (PHP)
How would I go about converting this if statement:
for($i = 1; $i < $argc; $i++)
{
...
if(in_array($argv[$i], array('-V', '--version')))
{
$displayVersion = TRUE;
}
...
...
4
votes
4answers
443 views
Does the order of case in Switch statement can vary the performance?
Let say I have a switch statement as below
switch(alphabet) {
case "f":
//do something
break;
case "c":
//do something
break;
case "a":
//do ...
4
votes
5answers
272 views
Is there a more efficient way to run enum values through a switch-case statement in C# than this?
I was wondering if there was a more efficient (efficient as in simpler/cleaner code) way of making a case statement like the one below...
I have a dictionary. Its key type is an Enum and its value ...
4
votes
1answer
2k views
Java Enums - Switch statements vs Visitor Pattern on Enums - Performance benefits?
I have been searching around for days to find an answer to this performance based issue.
After digging the Internet so far I have learned that there are couple of ways to use the Enums in java, well ...
3
votes
2answers
79 views
SQL Case and LIKE in where clause
I have been breaking my head over this hope it's possible
declare @locationType varchar(50);
declare @SearchTerm NVARCHAR(100);
SELECT column1, column2
FROM whatever
WHERE
CASE @locationType
...
3
votes
4answers
132 views
Java using enum with switch statement
I've looked at various Q&As on SO similar to this question but haven't found a solution.
What I have is an enum which represents different ways to view a TV Guide...
In the NDroid Application ...
3
votes
4answers
343 views
C# switch case fall-through
I'm using a switch/case statement to handle some updates for a deployed application. Basically, I want to waterfall through the cases to perform the update from the current running version to the ...
3
votes
6answers
174 views
T-SQL update with switch-case statement
I want implement this pseudocode in t-sql
UPDATE Resources SET [Path]= CASE ([Path].Substring([Path].LastIndexOf('.')))
WHEN '.jpg' THEN '/image.jpg'
...
3
votes
4answers
836 views
C++ switch-case curly braces
In a C switch-case flow control, it's required to put curly braces { } after a case if variables are being defined in that block.
Is it bad practice to put curly braces after every case, regardless ...
3
votes
9answers
416 views
Why does this program not output 20?
#include<stdio.h>
int main() {
int a = 1;
switch (a) {
int b = 20;
case 1:
{
printf("b is %d\n", b);
break;
}
...
2
votes
2answers
132 views
Design Pattern replacing nested switch/ifelse
I'm working in Java and I've seen a lot of design patterns and tried to fit my problem in it but somehow I just can't find the good one.
These are example packets I receive:
{String robot, String ...
2
votes
3answers
170 views
How to avoid long switch-case statements?
I am currently coding an Android app, which will be used to count Traffic at Intersections.
At a 4-way Intersection, the app would have 24 buttons.
There are 4 groups, one for: ...
2
votes
3answers
211 views
PHP: are switch-case statements with strings inefficient?
In my PHP layer I'm receiving error codes as strings ("NOT_FOUND", "EXPIRED", etc). It's a small list of possible strings, perhaps a dozen.
What's the most efficient way of dealing with these? Using ...
2
votes
1answer
217 views
XSD: Either/Or syntax
How can i do either/or validation in an XSD? e.g. in the following xml fragment, if the action is A (add), then subsequent attributes and elements are required:
<Post postID="22793" action="A" ...
2
votes
3answers
398 views
Switch-Case: declaration-with-initialization & declaration-and-then-assignment
In the switch-case statements declaration-with-initialization is invalid but declaration-and-then-assignment is allowed. As shown in the following code snippet.
What is difference between these two ...
2
votes
6answers
288 views
Why do switch statements continue after case
After evaluating a case in a switch statement in Java (and I am sure other languages) the following case's are also evaluated unless a control statement like break, or return is used.
I understand ...
2
votes
2answers
562 views
C# Switch-case Loop for Datagridview cells
I am working on a form with datagridview and webbrowser controls. I have three columns as URL, username and password in datagridview. What I want to do is to automate the login for some websites that ...
2
votes
1answer
247 views
replace a bunch of show/hide with switch/case in javascript
Page has menu items that would replace a 'div id=foo_(current menu item)' with 'div id=foo_(selected menu item)' in 'div class=foo'
Here's what I've got, and try to keep your breakfast down...
...
2
votes
4answers
2k views
jQuery Switch Case Plugin?
I know the switch case statement is inherent to javascript and you can't change it. I'm still learning javascript and jQuery so I can get by, but I don't know enough to write something that might be ...
2
votes
4answers
621 views
Does the C# switch statment need a break; [closed]
Is C# true to C++, needing a break; per case:? ..Default is fall-thru - Unlike VB
OR will it automatically break out of a case once found? ..Default is break - Like VB
Edit: So it is a combination ...
1
vote
1answer
149 views
Haskell case statement
I have code something like this
main :: [[String]] -> IO ()
main st = do
answer <- getLine
case answer of
"q" -> return ()
"load" x -> main $ parseCSV $ readFile x
...
1
vote
4answers
84 views
Case statement is not outputting correctly?
This is very strange but below is my case statement:
switch($grade){
case ($average >70):
$grade = 'A';
break;
case ($average >=60 && $average <=69):
$grade = ...
1
vote
4answers
87 views
question regarding switch conditionals in php
I was hoping someone had a clue as to why I got the following outputs because I was expecting something else.
$x = NULL;
switch ($x) {
case "0":
echo "String";
break;
case ...
1
vote
3answers
87 views
php - split switch cases in different files
I have a php file in which i am using a really very long switch case. I want to split the cases in different files (keep logically connected cases in 1 file).
EDIT: Sorry everyone it was my code ...
1
vote
3answers
292 views
Android: Passing a value with the button click using switch case
I have two buttons when we click the first button we should assign M value to a string and for the second button I want to assign F value to the same string variable
In the below given code gender ...
1
vote
3answers
133 views
C switch question
I'm new to programming and I would like to add to a switch that would take in option cases such as -aa, -aaa, -aaaaaa etc where each of these three cases could serve a singular function in addition to ...
1
vote
3answers
622 views
Select Case Fall through with Not Condition in VB.NET
How to Add Not condition in the below select case.
Is <> works for single value, and 'To' works for a Range but the value are specific values there are not series of numbers. Is it possible to use ...
1
vote
5answers
376 views
Variable value switch cases in Java
I'm looking to make a switch where 5 of the cases are functionally identical, but then there will be other unique cases. Is there a way to list a case value that handles 5 different values? Thanks
1
vote
1answer
386 views
Weird Switch case error (iPhone sdk) UITableView
I am getting a weird compilation error - I dont know if there is a "ghost in the machine" or what?
Below if the code snippet where I am getting this error
- (UITableViewCell ...
1
vote
3answers
204 views
While within a switch block
I've seen the following code, taken from the libb64 project.
I'm trying to understand what is the purpose of the while loop within the switch block -
switch (state_in->step)
{
while ...
1
vote
6answers
281 views
dynamical binding or switch/case?
A scene like this:
I've different of objects do the similar operation as respective func() implements.
There're 2 kinds of solution for func_manager() to call func() according to different objects
...
1
vote
2answers
327 views
create an object in switch-case
i use visual studi 2008. (c++)
in my switch case a wanted to create an object, but i doens't work.
is it right, that i can't create an object in a switch case?
if that's right,whats the best way to ...
1
vote
3answers
455 views
Threaded State Machines in Java
Is there a way of Holding a thread in a State waiting for changes?
I mean wait tll something happend (change var, call method, etc..)
perhaps it needs using Event Listeners, or synchronized ...
1
vote
9answers
290 views
need to create a summary of a large switch statement in C#
Alright, i dont know how to explain it well.. but i have a switch statement,
string mystring = "hello";
switch(mystring)
{
case "hello":
break;
case "goodbye":
break;
case "example":
break;
}
of ...
1
vote
5answers
263 views
what is the alternate way of doing function of switch-case (and if-else) in c?
what is the alternate way of doing function of switch-case (and if-else) in c?
0
votes
3answers
44 views
Handling switch statement
What's the preferred way to handle the following case:
switch (numberOfActualBytes)
{
case 1: return something1;
case 2: return something2;
case 3: return something3;
case 4: return ...
0
votes
3answers
53 views
PHP switch and case logical control
It posible to have logical control on case ?
ie:
$v = 0;
$s = 1;
switch($v)
{
case $s < $v:
// Do some operation
break;
case $s > $v:
// Do some other ...
0
votes
4answers
189 views
'break' statement when using curly braces in switch-case
I use curly braces with all of my switch case statements in C/Objective-C/C++
I had not, until a few moments ago, considered whether including the break; statement inside the braces was good or bad ...
0
votes
3answers
48 views
How can I correct this switch case in php?
Please let me know how can I complete this switch code:
switch ($urlcomecatid) {
case "50":
case "51":
case "52":
case "109":
case "110":
do nothing and exit from switch
otherwise:
header ...
0
votes
2answers
219 views
Comparing if-else, switch-case and Contains() for performance, readibility and reusebility
I have this below code(this is a sample, there are many more other conditions which Session["Yapilanislem_Popup"].ToString() is different.).
if (Session["Yapilanislem_Popup"].ToString() == ...
0
votes
1answer
169 views
Android: Fatal exception for switch case
I added a switch case above the register() method and I am getting Fatal exception and If i remove the switch case its working fine. If I go for onclicklistner inside the register method its also ...
0
votes
5answers
148 views
How to handle “switch/case” when new parameters added in SW release
How to handle when there is a new SW Release sometime and it adds another index to switch case. Index represents a parameter in this case. For example,
Rel1: i = 1-5, 7 (excluding 6)
Rel2: i = 1-7
...
0
votes
3answers
187 views
Switch/Case on a Type/Class instance?
I have a set of different MovieClips:
Pink
Yellow
Red
and I create an item
item = new Pink();
item = new Red();
etc...
How do I write a switch case to see which MovieClip I have?
switch (item) ...