View Single Post
  #9  
Old 07-07-2009, 06:41 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Quote:
Originally Posted by WhiteDragon View Post
Each group of statements (except the default) should end with break or return. Do not fall through.
Didn't Zero just write a guide to switch statements that said pretty much showed efficient ways to not end each statement with a break?

Also, I like to indent my cases two spaces in, just like my if statements.
PHP Code:
switch (expression) {
  case 
expression:
    
statements
  
default:
    
statements

Reply With Quote