what is the different between if-else and switch statment
(other than syntax)
Answers were Sorted based on User's Feedback
Answer / thiyagu.p
Simply saying, IF-ELSE can have values based on constraints
where SWITCH can have values based on user choice.
Is This Answer Correct ? | 187 Yes | 42 No |
Answer / fazlur rahaman naik
The main difference between switch - case and if - else is
we can't compare variables.
in the if - else, first the condition is verified,then it
comes to else whereas in the switch - case first it checks
the cases and then it switches to that particular case.
Is This Answer Correct ? | 168 Yes | 35 No |
Answer / kuldeep sadhu
actually if else is a cndition checking system but the
switch is a selection of user typed type......
& secondly switch does not check all cases but jump directly
on the user interested case but if checkes all.............
Is This Answer Correct ? | 61 Yes | 23 No |
Answer / sujith
I would like to answer this question from a compiler
perspective. When we have if else or if else tree, we have
many compare instructions ( assembly generated by compiler)
where as switch has only one compare and jump instruction.
If the idea is to does something after comparing the values,
it is always better to go with the switch case than if else
tree.
I would appreciate analyzing the assembly code, with the
same source, with if else tree and switch case statements.
Is This Answer Correct ? | 58 Yes | 33 No |
Answer / ananth kumar
switch has its own pros and cons,
Favours coding style.
From performance point, switch case creates table. It
directly jumps to the required location based on table
contents.
If-else is hard for code-walk
Optimised (please check).
Is This Answer Correct ? | 44 Yes | 21 No |
Answer / vikky
expressions cannot be used as arguments in switsh, but in
if else any kind of exp can be used...
in the case of checkin a single variable for several values
SWITCH is the BEST.
in all other cases if else holds gud.
Is This Answer Correct ? | 36 Yes | 20 No |
Answer / sanjay parmar sirsa
If-else
we depand the condition
if condition true then true block will be excuted
else
false block will be excuted
switch have number of choice we can excute any choice
Is This Answer Correct ? | 21 Yes | 6 No |
Answer / mikew
The switch branches on one value only, whereas the if-else
tests multiple logical expressions.
So you could say that the switch is a subset of if-else.
The potential difference if that switch is conceptually an
N-way branch point, whereas the if-else is always a
(repeated) binary branch.
However, if you are checking, say, a return code, against a
varied list of possibilities, then the switch can give
greater clarity to source code - and allow simpler addition
of new cases, making it easier for maintenance, as well as
allowing the compiler to generate simpler code.
Simpler code is possible because it can generate a jump
table to perform the multiple comparisons, i.e. in pseudo-code:
_jump_table:
DEFW case1_address
DEFW case1_value
...
DEFW caseN_address
DEFW caseN_value
DEFW NULL /* terminator */
- search _jump_table for case_value
- branch to corresponding case_address, or take default
action if NULL terminator found instead.
In the special case that case1 ... caseN values are
sequential numbers (maybe with a few gaps) then the table
and code can be further simplified as a simple indexed branch:
_jump_table:
DEFW case1_address
...
DEFW default_address /* fill in any holes !*/
...
DEFW caseN_address
- check value is between case1_value and caseN_value
- subtract case1_value
- load branch address word from _jump_table word-indexed on
previous result
Is This Answer Correct ? | 27 Yes | 14 No |
Answer / sherin
There are some things that you simply cannot do with a
switch. These are:
A float expression cannot be tested using a switch
Cases can never have variable expressions (for example it is
wrong to say case a +3 : )
Multiple cases cannot use same expressions.
Is This Answer Correct ? | 17 Yes | 7 No |
Answer / sujoy dutta
we can use all varriables within if else.but we can't use
all verriables within switch case.example :-float and
String we can't use within switch case.
Is This Answer Correct ? | 17 Yes | 7 No |
plz let me know how to become a telecom protocol tester. thank you.
Which is more efficient, a switch statement or an if else chain?
Write a program to swap two numbers without using the third variable?
Why doesn't C have nested functions?
how to make program without <> in library.
what is the differance between pass by reference and pass by value.
Write a program with dynamically allocation of variable.
Can you think of a logic behind the game minesweeper.
Can I pass constant values to functions which accept structure arguments?
Explain what happens if you free a pointer twice?
What are the advantages of union?
A C E G H +B D F A I ------------ E F G H D