In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism

learn more… | top users | synonyms (2)

-3
votes
1answer
90 views

Invalid conversion from “char” to “char *” [closed]

This is the program to convert a Roman number (for example VI) to a decimal. The algorithm is writing a function that recognize each element of the input string and return the corresponding value in ...
0
votes
0answers
11 views

On hover and click switch color based on classes

I want to change colors of the li on hover and on click based on what li was clicked, using a switch statement and an array to do this. So each specific li is linked to a certain color that it changes ...
2
votes
1answer
35 views

Switch alternative/Extensible Programming good practices? [duplicate]

First, a bit of background of my question; I am writing a modular Server/Client type program in C#. I have a threaded processing system to handle my packets from a client queue, an example of what I ...
2
votes
3answers
84 views

Go switch vs if-else efficiency

In Go, switches are much more flexible than in C/C++ since they can handle cases of boolean expressions and replace large else-if ladders seemingly entirely, especially with the default switch {...} ...
1
vote
4answers
39 views

Continue case in switch

I have following code: switch(true) { case (something): { break; } case (something2): { break; } case (something3): { ...
4
votes
2answers
39 views

Why is if-else for String faster than switch-case for enum?

As Java 6 does not have switch-case for String, I often change an if-else block to switch-case using enum as in the code below. However, when I tried to check the performance of the two alternatives, ...
0
votes
1answer
68 views

Code not executing after function inside of Switch

The following code in Case 'Y' or 'y' the function randStats() is called and after the function returns I need it to execute the code below the function call in the Switch case, but it is not doing ...
-3
votes
10answers
131 views

Switch Case in c++

How can I compare an array of char in c++ using switch-case? Here is a part of my code: char[256] buff; switch(buff){ case "Name": printf("%s",buff); break; case "Number": printf("Number ...
0
votes
1answer
7 views

xcode - switch between more than 2 view controllers

I have several .xib files (page1, page2 ...) and want to switch between them using buttons (as a navigation bar) I am using page1 *second = [[page1 alloc] initWithNibName:nil bundle:nil]; ...
1
vote
7answers
73 views

Using sets in “switch” statement [duplicate]

Am I able to add sets instead of numbers to "switch" statement? Like: switch(number) { case 1<50: //if number is between 1 and 50 { blah; break; } case 50<100: //if number is between 50 ...
0
votes
1answer
18 views

Modify Listview adapter rows when switch is on or off

I have ListView with row as TextView and Switch. Now I want that When I click on First Item Switch i.e. when I on the Switch(position==0) Then all Rows below that are Visible else When I make First ...
2
votes
5answers
98 views

declaring variables as locally as possible and switch statement

Some famous code style books recommend declaring vars as local as possible( http://stackoverflow.com/a/10205934/700825) My question is : Is switch statement exempt from this rule? For example if ...
21
votes
7answers
1k views

Using two values for one switch case statement

In my code, the program does something depending on the text entered by the user. My code looks like: switch (name) { case text1: { //blah break; } ...
-1
votes
0answers
32 views

Switch case only working for first case (PHP, WordPress)

I have created a custom page template for WordPress to dynamically change what content is displayed in the "Gallery" based on a Custom Field set for each page. In this template I have written a ...
1
vote
2answers
52 views

Switch-statement inside a while-loop which loop infinitely

Here is my code: int main() { int nothing; string name; int classnum; bool classchosen; string classname; cout << "Welcome adventurer, your journey is about to ...
0
votes
3answers
35 views

how to use ng switch to better validate

http://jsfiddle.net/x3azn/AbmsG/1/ I only want to show error Msgs one at a time, I am thinking of doing it with ng switch which is more code efficient than ng:show, however the algorithm I have right ...
0
votes
0answers
27 views

Switch screen orientation in Android

I have created two layout files for my android application, to manage the switch from landscape to portrait and from portrait to landscape. One in the dir res/layout and one (landscape file) in ...
2
votes
1answer
27 views

R programming: perform function with switch functionality for each row based on different columns

In R programming I try to do the following: df A B Category 0.9 0.85 A 0.7 0.75 B 0.8 0.90 B CSF <- function(df, type) { switch(type, ...
30
votes
2answers
963 views

Why does C# allow statements after a case but not before it?

Why does C# allow this: var s = "Nice"; switch (s) { case "HI": break; const string x = "Nice"; case x: Console.Write("Y"); break; } But not this: var s = ...
0
votes
5answers
122 views

Converting two digit number to words using switch statement

The question says to write a program asking the user to enter 2 digit number, then prints the English word for it. Suppose you enter '41' the printf function prints out 'forty one'. I have almost ...
2
votes
1answer
28 views

Configuring a DHCP server with VLAN on a switch

I have a problem while configuring a switch, I want to create a VLAN and to activate the DHCP server and so all switch ports associated to this VLAN will receive automatically an IP address from the ...
0
votes
1answer
33 views

Redirect Loops in Switch Case with header(location)

<?php $rexgeoip = new RexGeoIp; $iso = strtoupper( $rexgeoip->getCountryIso() ); switch ($iso) { case 'DE': header("Location: http://www.domain.de/en/",TRUE,301); ...
0
votes
3answers
53 views

Drag and Drop switch case, unreachable code?

Why is this code unreachable and how do I fix it? public void draggingEvent() { image15(); final int thisLetter = currentLetter; mImageView15.getDrawable(); mImageView15 = (ImageView) ...
21
votes
9answers
2k views

How to reduce if statements [closed]

The program below functions as necessary but how do I reduce the amount of if statements. I have been told that if your function contains 2 or more if statements then your doing it wrong. Any ...
3
votes
1answer
39 views

Can procs be used with case statements in Ruby 2.0?

I remember something about procs being allowed in case statements in Ruby 2.0, but I can't google it. I tried checking Ruby 2.0.0 NEWS and How can I write a switch statement in Ruby?. I also visited ...
0
votes
6answers
56 views

Check for specific class to execute switch statement

I'm running json calls based on a specific class in the body class To help reduce unnecessary calls on various pages. ex: $(function () { if ($('body.CLASSNAME1').length == 1) { //JSON ...
0
votes
1answer
19 views

Plot_Handles - How to use if-loop with plot handles?

I'm having a bit of a problem to integrate the if-loop with plot_handles. So the program I'm writing has this structure: It has this menufile in which you choose what you want to do (This is only a ...
0
votes
3answers
45 views

PHP switch case $_GET's variables and switch case $_GET's variable's values

Say I have an URL like www.mysite.com/index.php?login=0. Is it possible to switch case $_GET's variables and switch case $_GET's variable's values? Something like: switch ($_GET) { case 'login' ...
0
votes
3answers
34 views

Javascript - Different markers for different types

I'm working on customizing Google markers on a map. Upon searching for a single area, the results return a map with markers of restaurants, parks, and meetups. I'm trying to give different marker ...
4
votes
5answers
90 views

in Obj-C, how could I make a switch statement that will evaluate classes, rather than just numbers?

in Obj-C a switch can only evaluate numbers. I'd like to be able to use it to compare classes of objects, something like this, for instance: switch (currentSubViewController.class) { case ...
0
votes
3answers
37 views

Android: Two buttons but the action from pressing one is only taking place after the other is pressed too

I have two buttons in my application, one is to to start Google Voice and the other is to exit the application. However, when I press the voice button, it doesn't do anything until after I press the ...
1
vote
1answer
63 views

How correct code in wodpress sidebar to show only posts from last 1 month from category

I started to work on one website after another developer and I don't understand how to make popular widget to show only posts from last 3 months from categories(1 month for category news). I see ...
-1
votes
3answers
51 views

Why is this failing to compile?

I have an requirement to execute an expression which contains math and conditional statements and a switch statement. What I've tried is this: 20 + 10 + (if (20 > 10){ return 0.2; } else { return ...
0
votes
1answer
19 views

ARP & layer 3 switch

The following is based on my understanding of network, if there's anything wrong, please point it out. Considering the following scenario. A host (sender) is to send a IP packet: 1) sender fills in ...
0
votes
1answer
37 views

Accessing a returned value from a different case

Hi It's the 3rd time i'm posting this question on this forum and up to now no one has been capable to enlighten me about this situation. I only pasted the code that matters here and will try to ...
-1
votes
4answers
54 views

How to Make If statement for a specific Image source? [closed]

I have this line in my program (Run in Dreamweaver) which is the following: function go() { if((document.test.test1.src == document.test.test2.src && document.test.test2.src == ...
0
votes
1answer
36 views

Passing a value from one case to another in switch statement

So here is a sample code : import java.util.Scanner; public class Test { public static void main(String[] args) { System.out.println("Please type in a number"); Scanner in = new ...
0
votes
1answer
23 views

“Jump dictionaries”, switch statements, or how to do “jump dictionaries” without eval?

I like the concept of "jump dictionaries" that contain key:values, where the values are functions. I'm not sure if I should like this concept or not, though. I want to replace a long list if if-else ...
-1
votes
1answer
62 views

returning a variable to a method from within a switch statement

For some reason i'm loosing access to my variables inside the switch statement, I am not allowed to use any global variables. import java.util.Scanner; public class Projet { public static ...
-2
votes
5answers
51 views

Switch case with Select Option

I'm having problems to set a Switch Case with the value of a Select options, here's the code I'm using: <form id="selectcub" name="selectcub"> <select id="cub01" name="cub01" ...
2
votes
1answer
17 views

Switching the order of multiple sets of elements with jQuery

I have a number of elements on a page which contain a header and an image, which I would like to change the order of. E.g switching the order of the img with the h2: <section> <img> ...
0
votes
4answers
57 views

.net Switch statement and random number: Not all code paths return a value. Must I include a default?

Heres a tiny function to randomly return either +1 or -1 public static int PlusOrMinus() { int chance = MyRandom.Random.Next(0, 2); switch (chance) { case 0: return ...
0
votes
1answer
29 views

coffeescript jQuery - how to refactor this (noob) approach?

after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
-1
votes
0answers
8 views

I've been trying to make my lego robot go round and round a table just for once and then stop

I used a switch sensor(ultrasonic)to detect the obstacle.It works well but I need a condition to exit that loop iin which I have the switch.How can I stop it in order to follow the walls of that ...
2
votes
6answers
80 views

switch loop into a for: why is every case true?

for(int i = 0; i <= lvl-1; ++i) { id = sequence.get(i); switch(id) { case 1: sq1.setBackgroundResource(R.drawable.square_show); ...
1
vote
4answers
71 views

c++ int switch statement always goes to `default`

I have a switch statement that is based off an int comparison, but for some reason, it keeps failing on true comparisons, and skipping to the default. Here's my code: string Error(int errorNum, int ...
-1
votes
3answers
34 views

PHP: Switch check same value from multiple variables

I am setting Switch to select font family for multiple places. For instance for body and for paragraph. Both has own selection dropdown but same font family. Means body as arial, tahoma, verdana than ...
-4
votes
8answers
75 views

c++, problems with switch operator [closed]

Now I am looking through some c++ test, and here I found such code: int main() { for (int i=0; i<3; i++) { switch(i) { case 0: cout<<"ZERO"; case 1: ...
2
votes
3answers
72 views

Why aren't we allowed to use even global const qualified variables in switch-case?IBM support portal hints we can

Huh it's getting so muddy.The following IBM Support Portal link seems to suggest that the reason we can't use const qualified variables as real constants is because their life-time is not the same as ...
0
votes
2answers
39 views

Extendable design pattern based on database records or enum values

I am working on a project that needs to be very extendable. It is about performing actions on the basis of a string code or an enum value. I am now using a switch-case statement and calling the ...

1 2 3 4 5 49