RE: Java: Switch Or If Else

  • From: "Homme, James" <james.homme@xxxxxxxxxxxx>
  • To: "programmingblind@xxxxxxxxxxxxx" <programmingblind@xxxxxxxxxxxxx>
  • Date: Tue, 22 Feb 2011 13:11:05 -0500

Hi,
Thanks, guys. When I saw Ken's example, I liked the switch better.

Jim

Jim Homme,
Usability Services,
Phone: 412-544-1810. Skype: jim.homme
Internal recipients,  Read my accessibility 
blog<http://mysites.highmark.com/personal/lidikki/Blog/default.aspx>. Discuss 
accessibility 
here<http://collaborate.highmark.com/COP/technical/accessibility/default.aspx>. 
Accessibility Wiki: Breaking news and accessibility 
advice<http://collaborate.highmark.com/COP/technical/accessibility/Accessibility%20Wiki/Forms/AllPages.aspx>

From: programmingblind-bounce@xxxxxxxxxxxxx 
[mailto:programmingblind-bounce@xxxxxxxxxxxxx] On Behalf Of Sina Bahram
Sent: Tuesday, February 22, 2011 1:02 PM
To: programmingblind@xxxxxxxxxxxxx
Subject: RE: Java: Switch Or If Else

I can't agree more

Switch is so superior to chains of if statements.

Take care,
Sina

From: programmingblind-bounce@xxxxxxxxxxxxx 
[mailto:programmingblind-bounce@xxxxxxxxxxxxx] On Behalf Of Ken Perry
Sent: Tuesday, February 22, 2011 12:59 PM
To: programmingblind@xxxxxxxxxxxxx
Subject: RE: Java: Switch Or If Else



I find switch much easier to use and read in large if else messes.  For example 
in a multi level if else like this.

If (){
If (){
If (){
}else{
}
}else{
}
}else{
If (){
If (){
}else{
}
}else{
}
}


Could look like this

Switch ()
Case 1:
If (){
}else{
}
Case 2:
If (){
}Else{
}



From: programmingblind-bounce@xxxxxxxxxxxxx 
[mailto:programmingblind-bounce@xxxxxxxxxxxxx] On Behalf Of Homme, James
Sent: Tuesday, February 22, 2011 12:41 PM
To: programmingblind@xxxxxxxxxxxxx
Subject: Java: Switch Or If Else

Hi,
Would there be a time when you would choose to use switch, and another when you 
would choose to use if else? For example, if doing it one way or the other 
would make a program easier to read. When I was just thinking about this, it 
seemed to me that if you would choose if else, you wouldn't have to keep 
remembering to put in break statements. For ease of reading, it would seem that 
the code would take less time to listen to if you would choose if else.

Thanks.

Jim
Jim Homme,
Usability Services,
Phone: 412-544-1810. Skype: jim.homme
Internal recipients,  Read my accessibility 
blog<http://mysites.highmark.com/personal/lidikki/Blog/default.aspx>. Discuss 
accessibility 
here<http://collaborate.highmark.com/COP/technical/accessibility/default.aspx>. 
Accessibility Wiki: Breaking news and accessibility 
advice<http://collaborate.highmark.com/COP/technical/accessibility/Accessibility%20Wiki/Forms/AllPages.aspx>


________________________________
This e-mail and any attachments to it are confidential and are intended solely 
for use of the individual or entity to whom they are addressed. If you have 
received this e-mail in error, please notify the sender immediately and then 
delete it. If you are not the intended recipient, you must not keep, use, 
disclose, copy or distribute this e-mail without the author's prior permission. 
The views expressed in this e-mail message do not necessarily represent the 
views of Highmark Inc., its subsidiaries, or affiliates.

Other related posts: