In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism
1
vote
7answers
64 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
79 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 ...
18
votes
6answers
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
31 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
33 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,
...
29
votes
2answers
900 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
118 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
24 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) ...
20
votes
9answers
1k 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
55 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
2answers
30 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
34 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
50 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
50 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
27 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
79 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
71 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
38 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 ...
0
votes
2answers
36 views
Is it possible to use multi conditions in PHP switch resultant with multi actions (executible codes)?
Is it possible to use multi conditional statement in PHP (switch) resultant with multi conditional (executable codes)? The code might be look like this:
In case of $fifth only was 9, $fifth -= ...
-3
votes
0answers
26 views
How can I switch 5.1 audio output channels?
I have logitech x-540 5.1 audio system. How can I switch front right into front left, front left into rear left, rear right into front right, rear left into rear right?
**I want to do it ...
0
votes
0answers
33 views
How do I use neo4j Relationship types in a switch statement?
In ReqsDb.java I have:
public static enum RelTypes implements RelationshipType {
IDENTIFIES, IS_MEMBER
}
In another class I have:
ReqsDb reqsDb = new ReqsDb();
for (Relationship rel : ...
0
votes
1answer
37 views
Java Past Paper - Is it just me or wording of this switch statement q is making it unsolvable?
I have been revising for my exam and I have found a question in one of my past papers which (at least to me) seem unsolvable. I will have to attach it as a picture because it has been scanned and ...
0
votes
0answers
25 views
running commands with ssh python and exscript package failed
I'm trying to execute some configuration commands on my switch with ssh connection and python development tools (exscript package), I found this function which run perfectly in my localhost but not in ...
0
votes
1answer
42 views
How to move to next case in switch condition
I am in need of a code, using which in my Android App, I want to go through all the cases of switch condition , (Not randomly!!!).I am able to move it randomly as follows.
public void ...
0
votes
2answers
56 views
Switch case logical expression statement in Java - versus JS or PHP
in JavaScript and also I've seen it in PHP : You can use a logical expression inside you cases :
For Example :
switch(true){
case (d<10):
document.write("Less than 10");
break;
case (d==10):
...
3
votes
1answer
76 views
Is this a switch statement smell?
I am looking through someone's C code, and discovered something I didn't even know was possible. Inside some of the cases, the switch variable is modified, with the intention that another case is ...
0
votes
5answers
73 views
Initializing in a switch case in C
Is it bad practice to initialize variables inside a specific case of a switch?
I have quite a few variables that is only relevant for one of my cases, and can't seem to find any info on this.
Thanks ...



