Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

89
votes
11answers
4k 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> ...
8
votes
10answers
3k views

C/C++ goto

I want to declare an array of "jumplabels". Then I want to jump to a "jumplabel" in this array. But I have not any idea how to do this. It should look like the following code: function() { ...
7
votes
7answers
413 views

Does “default” switch case disturb jump table optimization?

In my code I'm used to write fall-back default cases containing asserts like the following, to guard me against forgetting to update the switch in case semantics change switch(mode) { case ModeA: ... ...
4
votes
9answers
1k views

Is there anything like branch/jump table in Java?

does Java have something similar to a branch or jump table? A branch or jump table table is, according to wikipedia, "a term used to describe an efficient method of transferring program control ...
2
votes
3answers
407 views

Switch-Case: declaration-with-initialization & declaration-and-then-assignment

In the switch-case statements declaration-with-initialization is invalid but declaration-and-then-assignment is allowed. As shown in the following code snippet. What is difference between these two ...
0
votes
0answers
9 views

Jumptable extractor Error

I received an error on a custom jumptable script: ERROR: invalid opcode 'DD' in input: I'm sure what exactly this means and how to go about its resolution. Any help here would be greatly ...