Tagged Questions
8
votes
1answer
155 views
What parts of given/when are experimental?
Has the entire "switch" feature become experimental? Are there parts of it I can rely on using without future versions of Perl breaking my code? In general, what is the policy toward changing stable ...
-1
votes
1answer
51 views
Using switch statements without curly braces is right or wrong?
switch($_SERVER["SCRIPT_NAME"]){
case "/index.php":
$this->pageId = 1;
break;
case "/shops/index.php":
$this->pageId = 2;
break;
case ...
0
votes
0answers
49 views
Why don't most languages allow switch on rvalue?
I once worked with a language (won't say which - it's outdated and nobody is likely to have heard of it, much less used it) where you could reverse the typical arrangement of a switch statement, and ...
1
vote
4answers
339 views
Avoid Switch statement redundancy when multiple Cases do the same thing?
I have multiple cases in a switch that do the same thing, like so: (this is written in Java)
case 1:
aMethod();
break;
case 2:
aMethod();
break;
case 3:
aMethod();
...
3
votes
5answers
90 views
is it possible to do an OR in a case statement?
I want to do something like:
case someenumvalue || someotherenumvalue:
// do some stuff
break;
Is this legal in C?
The variable that I am doing a switch on is an enumerated list data ...
0
votes
2answers
5k views
Nested IIF or SWITCH Statement syntax needed correctly
Can somebody please tell me what I am missing in this formula in SSRS. Or better yet can somebody please write this same thing in a NESTED IIF syntax.
Switch(
(Parameters!StartMonth.Value <= ...
1
vote
3answers
171 views
'END' keyword in switch case?
so I'm looking at another person's code trying to fix it, and I'm not sure what is happening. I have a pretty strong knowledge of programming in general, but there is one line that is throwing me ...
4
votes
8answers
536 views
Break inside switch Cannot Terminate FOR Loop [duplicate]
I have a code snippet :
int n = 0;
for (int i = 0; i < 50;i++)
{
n = checkStatus();
switch (n)
{
case 1:
break;
break;//This is unreachable and so i cannot ...
4
votes
6answers
721 views
Multiple Argument Switch Statement
So I was taking a Computer Science test today, and I had to write out a large number of consecutive if statements. All of them had the same basic arguments, just the conditions were different. The ...
0
votes
2answers
160 views
Am I formatting my switch statements wrong?
I have been working on a "Rock Paper Scissors" game to see if I understand the basics of JavaScript. It all works well until I get to the if statement from lines 30 to 71 in the fight(): I have ...
15
votes
7answers
32k views
Java switch statement multiple cases
Just trying to figure out how to use many multiple cases for a java switch statement. Here's an example of what I'm trying to do:
switch (variable)
{
case 5..100:
doSomething();
...
2
votes
1answer
161 views
Odd compiler error when using Obj-C objects in a switch statement
I get a compiler error when using an Objective-C object within a switch statement:
switch (myConstant)
{
case 0:
UIViewController *myController = [[[UIViewController alloc] init] ...
8
votes
4answers
1k views
Why the c# compiler requires the break statement in switch construction?
I'm having hard time understanding, why the compiler requires using break statement. It's not possible to miss it since the fall through is now allowed. I see the reason for the break in C or C++, but ...
1
vote
6answers
393 views
python switch by class name?
I am currently doing this, to do different things based on an object's type:
actions = {
SomeClass: lambda: obj.name
AnotherClass: lambda: self.normalize(obj.identifier)
...
2
votes
4answers
351 views
Can I use a logical “or” in a PHP switch statement case?
Is it possible to use "or" or "and" in a switch case? Here's what I'm after:
case 4 || 5:
echo "Hilo";
break;
1
vote
8answers
1k 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;
switch ...
4
votes
2answers
242 views
Does “match … true -> foo | false -> bar” have special meaning in Ocaml?
I encountered the following construct in various places throughout Ocaml project I'm reading the code of.
match something with
true -> foo
| false -> bar
At first glance, it works like ...
6
votes
3answers
3k views
Python: Does python have an equivalent to 'switch'?
I am trying to check each index in an 8 digit binary string. If it is '0' then it is 'OFF' otherwise its 'ON'. I'm wondering if there's a more concise way to write this code with a switch-like ...
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 ...
2
votes
7answers
3k views
default as first option in switch statement?
I've tested this and it works fine, but it looks... weird... to me. Should I be concerned that this is nonstandard form which will be dropped in a future version of PHP, or that it may stop working? ...
0
votes
4answers
103 views
Should I assume two-elements enums will remain this way?
It happens quite a lot that I've a two member enum :
enum E{
A,
B
}
Let's say I want to assign a different value to i according to my enum value.
should I ...
6
votes
8answers
4k views
Using elements of a constant array as cases in a switch statement
I'm attempting to map a set of key presses to a set of commands. Because I process the commands from several places, I'd like to set up a layer of abstraction between the keys and the commands so ...