0
votes
7answers
78 views

java: is it more efficient a switch or a reflection?

From a jsp I get a string that I could use for a switch switch(value) case 0: method0(); break; case 1: method1(); break; ... or for a reflection: c.getMethod("method"+value, parameter); ... ...
1
vote
1answer
90 views

java switch cyclomatic complexity vs performance

I have a case here where the switch statement contains about 40 cases of each returning a different configured object based on input. This method is shown as having too high cyclomatic complexity in ...
3
votes
3answers
363 views

Alternative to Nested Switch Statements in Java

So I wrote a method today that incorporated the use of nested switch statements, and the code looked fairly clean and concise to me, but I was told that nested switch statements are not typically the ...
174
votes
4answers
5k views

Why does Java switch on ordinal ints appear to run faster with added cases?

I am working on some Java code which needs to be highly optimized as it will run in hot functions that are invoked at many points in my main program logic. Part of this code involves multiplying ...
1
vote
1answer
52 views

If/Else and Switch efficiency comparison in interpreted languages

I know that when source code is compiled, the compiler treats if/elseif/else and switch statements differently making switch statements at least as efficient as a corresponding if/elseis/else and most ...
0
votes
3answers
92 views

why is it recommended to use else if among switch and if in jquery [closed]

Why would be more convenient to do: var cnt = $("#div1 p").length; alert(cnt); if (cnt >= 10 && cnt <= 20) alert('10'); else if (cnt >= 21 && cnt <= 30) alert('21'); ...
1
vote
1answer
80 views

Is there a difference in the operations of if/else and a switch statement? [duplicate]

I'm mostly just curious, is using if/else and a switch statement just a matter of personal preference, or do they actually work differently? Is one more efficient than the other? If they are, why ...
1
vote
2answers
678 views

VB.NET How give best performance “Select case” or IF… ELSEIF … ELSE… END IF

I have a huge DataTable, and I need go by each row and validate an specific value. Which method give me more performance, an structure of IF ELSE or SELECT CASE? (I'm focused in the method that offer ...
0
votes
3answers
296 views

Implement a switch statement using a jump table in C++

I am trying to improve my parser's speed. And switch-case, sometimes it's useful, but I see it's still slow. Not sure - if C++ supports this feature (address checkpoints (with additional parameter)), ...
1
vote
4answers
84 views

Assign ressource dynamically vs. big switch case

I have a question regarding performance and best approach for my Android code. What I need to do is fairly simple, I want to dynamically assign a text value to a string ressource, depending on a int ...
1
vote
1answer
134 views

if-else faster than switch, why? (in ActionScript3)

Tested the following: var timer:int = getTimer(); trace(timer); for ( var g:int = 0; g < 10000000; ++g) { var mod0:int = g % 10; var ...
10
votes
2answers
202 views

Why is a single “if” slower than “switch”? [duplicate]

Possible Duplicate: What is the relative performance difference of if/else versus switch statement in Java? Given the following two methods: public static int useSwitch(int i) { switch ...
11
votes
4answers
260 views

Switch seems slower than if

I was curious as to the speed on switch, believing that it was "very" fast, but I have a test case that seems to show a single switch is about as fast as about 4 if tests, when I expected (no solid ...
-3
votes
1answer
62 views

What is the alternative for switch case in IOS? [closed]

Looking from the perspective of performance and maintenance.
2
votes
1answer
74 views

Switch Statement vs App.Config

I have a MVVM Xaml application and I am trying to squeeze every last millisecond out of the startup out of this that I can. One thing that I noticed is that there is a conversion from codes to ...
0
votes
0answers
52 views

does switching between thread many times affect performance?

I read from an article which states that we should adding items in batch to improve Listbox 's responsiveness. In order to do that, we must switch to UI thread every certain amount of time (ex. ...
1
vote
2answers
121 views

switch statement running before ajax is finished

Question: Is there any way to pause javascript until after ajax has finished executing its success function? Relevant Code: function validateinput (name, parent, access) { //we assume that the ...
-1
votes
1answer
53 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 ...
3
votes
3answers
382 views

“crosses initialization of variable” only when initialization combined with declaration

I've read this question about the "jump to case label" error, but I still have some questions. I'm using g++ 4.7 on Ubuntu 12.04. This code gives an error: int main() { int foo = 1; switch(foo) ...
0
votes
2answers
144 views

Java/Android: virtual dispatch, switch-case, or Array access

I know that "test it in your app" is a must. Nonetheless, I would like to ask for an analitical insight as well. I have an in-app instruction queue (as an Array) which elements are processed ...
4
votes
4answers
310 views

Switch() { case: } performance in C [duplicate]

Possible Duplicate: Why Switch/Case and not If/Else If? I would like to understand how a switch() case: statement in C is translated by the compiler into assembler opcodes. Specifically, ...
3
votes
1answer
486 views

groovy 'switch' vs. 'if' performance

I know that in Java the switch statement shouldn't be used when you have few cases, and in this case it's better use an if else if. Is it true also for groovy? Which is more performant between ...
1
vote
5answers
107 views

Programming advice for comparing and swapping multiple values

A country is sent to the method and then I want the method to return the continent. The current way I have it set up is a switch statement similar to this. This method can be called several thousand ...
1
vote
3answers
48 views

Efficiency of swapping out multiple thousands of values

I'm importing data to a database. About 5000 rows each time. When im inserting into the DB one of the columns has a location. There are about 80 possible locations in total. I want to check each one ...
0
votes
1answer
349 views

Switch from IIS 7.5 to Apache

I am concidering making a switch from IIS 7.5 to Apache. I have already tried running PHP (FastCGI) on nginx but the performance was extremely bad compared to IIS 7.5 Because I am unable to find ...
1
vote
3answers
196 views

tsql conditions vs c# conditions performance

I would like to know what performs faster and its preferable a condition in a tsql query like this: select case 'color' when 'red' then 1 when 'blue' then 2 else 3 end or performing the same switch ...
7
votes
3answers
867 views

C# Switch Statement: More efficient to not use default?

I was creating a C# method in visual studio that contained only a switch statement where each case returned a value. By personal habit, I put something similar to the following code: private string ...
-1
votes
1answer
94 views

What switch statement produces the least efficient machine code?

I've got a question in one of my tests that asked me to answer what switch statement produce the least efficient machine code. The possible answers were O4, O1, O2, or O3. I don't event know what ...
3
votes
2answers
325 views

Representation and efficiency of Switch statements in bytecode?

Though a switch statement can be represented as a series of if statements, it appears that when a Java switch statement is compiled into bytecode, a different approach is used. What is the ...
1
vote
2answers
890 views

Highly Performant Objective C Alternatives to the Switch Statement for Objects

I have a function which I would like to take in an NSString and an int arguments and then use the switch statement in order to return a calculated value, as in multiply the int by some constant, ...
3
votes
3answers
878 views

Optimising Java switch statement with many cases?

I am currently using a switch statement to handle types of incoming messages of which there are 20 or so different cases. Some of these cases are orders of magnitude more likely to occur than others. ...
1
vote
3answers
154 views

JS switch statements: Does most-likely-case optimisation matter?

Assuming this construct switch(foo) { case "foo": // ... break; case "bar": // ... break; ... default: // ... break; } or a similar conditional ...
0
votes
4answers
299 views

nesting 'switch' cases in javascript: any speed advantage?

newbie question here: I have a 'switch' containing numerous strings. Is there a speed advantage in splitting it alphabetically, like this? switch(myString.substring(0,1)){ case "a" : ...
7
votes
11answers
2k views

Enum.Parse() or Switch

For converting a string to an enum, which of the following ways is better? This code: colorEnum color = (colorEnum)Enum.Parse(typeof(colorEnum), "Green"); or this: string colorString = ... ...
1
vote
1answer
105 views

Is there any performance gain from using a switch statement over a bunch of if()else if() in javascript? [duplicate]

Possible Duplicate: Javascript switch vs. if…else if…else just curious if things will run faster or be laid out in cache nicer or something that might increase performance by ...
5
votes
10answers
2k views

C++: What is faster - lookup in hashmap or switch statement?

I have a code pattern which translates one integer to another. Just like this: int t(int value) { switch (value) { case 1: return const_1; case 3: return const_2; case 4: ...
109
votes
12answers
7k views

Is 'switch' faster than 'if'?

Is a switch statement actually faster than an if statement? I ran the code below on Visual Studio 2010's x64 C++ compiler with the /Ox flag: #include <stdlib.h> #include <stdio.h> ...
0
votes
2answers
1k 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() == ...
2
votes
5answers
96 views

Efficiency of using php to load scripts?

I have a website that's about 10-12 pages strong, using jQuery/Javascript throughout. Since not all scripts are necessary in each and every page, I'm currently using a switchstatement to output only ...
2
votes
3answers
688 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 ...
7
votes
8answers
755 views

How to avoid long switch statements? C++

I am working on a "dictionary" for my class. I have an int array called NumOfWordsInFile[] where NumOfWordsInFile[0] corresponds to how many words are in A.txt and NumOfWordsInFile[25] corresponds to ...
0
votes
3answers
193 views

PHP Code efficiency in menu

I currently have some VERY long winded code for the menu I use on my site. My website It's almost 2000 lines long lol. I think I may be able to use a switch but I've tried and cannot implement it to ...
3
votes
5answers
647 views

Java: Why is switch more common than if for Android Events? It takes more lines of code.. is it better for performance?

This is for Android which is a mobile device. Is a switch statement really more efficient? It takes more lines of code,, but that seems to be the more common approach. public void ...
1
vote
3answers
107 views

Is there a more efficient way to match multiple variables in PHP?

Currently, I have 36 variables that are being shuffled (for a really specific WP reason). Anyways so once the variables have shuffled, I am trying to match them with a name. So if $numbers[0] equals ...
1
vote
3answers
1k views

Evaluating every conditional statement on an if… else if… block

Does Objective-C evaluate every statement on an if... else if... block or does it evaluate each as it comes to them and then skip the remaining evaluations if a true condition has been found? This is ...
5
votes
2answers
548 views

If block vs Switch-Case block

Generally is there a performance difference between using an if block with many else ifs compared to a switch case block? Do some languages or style conventions prefer one over the other? ...
3
votes
2answers
556 views

(almost) Non-colliding simple hashing function for use in a switch

I am writing an advanced calculator in C. As you can guess, it currently has many functions, and I use a switch to do the proper operation for every function name. It goes something like this: ...
5
votes
4answers
1k 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 ...
6
votes
2answers
699 views

Switch statements: do you need the last break? (Javascript mainly)

When using a switch() statement, you add break; in between separate case: declarations. But what about the last one? Normally I just leave it off, but I'm wondering if this has some performance ...
1
vote
2answers
2k views

Which is better a switch statement or if-else if-else statement? [duplicate]

Possible Duplicates: is “else if” faster than “switch() case” ? What is the relative performance difference of if/else versus switch statement in Java? I am just ...

1 2