1
vote
4answers
95 views
How can I use goto in a switch statement in Objective-C?
In my code I need to be able to jump (goto) a different case within the same switch statement. Is there a way to do this?
My code is something like this: (There is a lot of code …
0
votes
4answers
136 views
Which is faster - if..else or Select..case?
I have three condition to compare. Which one is more faster between the following two? Please point me out. Thanks all!
If var = 1 then
Command for updating database
ElseIf v …
0
votes
10answers
350 views
How can I optimize a multiple (matrix) switch / case algorithm?
Is it possible to optimize this kind of (matrix) algorithm:
// | case 1 | case 2 | case 3 |
// ------|--------|--------|--------|
// | | | |
// …
3
votes
5answers
123 views
Performance difference in alternative switches in Python.
I have read a few articles around alternatives to the switch statement in Python. Mainly using dicts instead of lots of if's and elif's. However none really answer the question: is …
5
votes
5answers
139 views
Is it possible to use || in PHP switch?
switch ($foo)
{
case 3 || 5:
bar();
break;
case 2:
apple();
break;
}
In the above code, is the first switch statemen …
0
votes
1answer
58 views
How to write SSIS switch/case expression?
Hi,
This is a SQL Server Integration Services (SSIS) expressions question (I'm pretty new to it).
I would like to write a switch/case expression in a Derived Column transform - …
1
vote
10answers
192 views
switch statement doesn’t work
how come this java switch statement keeps telling me my statements are not statements
public void setConstant(float inNumGrade)
{
this.yourNumberGrade = inNumGrade;
switc …
3
votes
5answers
194 views
What’s the best(when performance matters) way to implement a state machine in C#?
I came up with the following options:
Using the goto statement:
Start:
goto Data
Data:
goto Finish
Finish:
;
using the switch statement:
switch(m_state) {
case St …
1
vote
9answers
173 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 "exampl …
1
vote
6answers
82 views
Mapping switch statements to data classes
This seems to come up alot in my code, i'm wondering if there is some way of removing the switch statement, or if there is a more elegant way of doing it?
public class MetaDat …
6
votes
13answers
378 views
How can I use a switch() statement to convert from a numeric to a letter grade?
This IS NOT homework, but it is a practice that the teacher gave us to help study for a test. But i will not be turning this in to the teacher. (i'm hoping that is allowed)
He wan …
2
votes
4answers
75 views
jquery Using ranges in switch cases?
Switch cases are usually like
Monday:
Tuesday:
Wednesday:
etc.
I would like to use ranges.
from 1-12:
from 13-19:
from 20-21:
from 22-30:
Is it possible? I'm using java …
1
vote
4answers
56 views
Is there a reason to prefer a switch over an if statement with only one condition?
I found the following code in my team's project:
Public Shared Function isRemoteDisconnectMessage(ByRef m As Message)
isRemoteDisconnectMessage = False
Select Case (m.Msg) …
3
votes
8answers
213 views
c ideas on shrinking this function?
I have this huge switch case with nested switch case statements in it that I was wondering if anyone had any ideas on how to clean up?
switch (datatype) {
case STR:
{
…
37
votes
17answers
3k 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 clo …
