07.01.2013 Views

David Defour - Université de Perpignan

David Defour - Université de Perpignan

David Defour - Université de Perpignan

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Put Braces on Conditionals<br />

• Always use braces for if statements<br />

–Even if there is only one thing to do<br />

• Yes<br />

if (…) {<br />

• No<br />

}<br />

doSomething();<br />

if (…)<br />

doSomething();<br />

• Gui<strong>de</strong>lines give small exception<br />

328<br />

jeudi 26 janvier 12<br />

–If there is only one thing to do and it is all on one line<br />

• Tolerated (grudgingly?)<br />

if (…) doSomething();

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!