Click here to Skip to main content
15,889,281 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralDo not trust a computer... PinPopular
notmasteryet11-Dec-08 12:51
notmasteryet11-Dec-08 12:51 
GeneralRe: Do not trust a computer... Pin
Lutosław12-Dec-08 9:57
Lutosław12-Dec-08 9:57 
GeneralAvoid return statement in the middle - horror or not? Pin
Georgi Atanasov5-Dec-08 12:01
Georgi Atanasov5-Dec-08 12:01 
GeneralRe: Avoid return statement in the middle - horror or not? PinPopular
Robert.C.Cartaino5-Dec-08 14:32
Robert.C.Cartaino5-Dec-08 14:32 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
John M. Drescher11-Dec-08 8:24
John M. Drescher11-Dec-08 8:24 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
PIEBALDconsult5-Dec-08 15:07
mvePIEBALDconsult5-Dec-08 15:07 
General[Message Deleted] Pin
Robert.C.Cartaino6-Dec-08 5:47
Robert.C.Cartaino6-Dec-08 5:47 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
harold aptroot6-Dec-08 6:48
harold aptroot6-Dec-08 6:48 
According those many sites, C and C++ do use short-circuiting. As a well-defined part of the language standard. Which means that it's fine to reply on, as long as you feel it won't impact readability.

Java also seems to behave differently from what you said:
http://www.student.cs.uwaterloo.ca/~cs132/Weekly/W02/SCBooleans.html[^]

And anyway, it's very pointless to put extra boolean operators (&&, ||) in a language without defining them to be short-circuiting. There are | and & already, and if there is no short-circuiting they'd be the same.
GeneralRe: Avoid return statement in the middle - horror or not? Pin
Robert.C.Cartaino6-Dec-08 11:52
Robert.C.Cartaino6-Dec-08 11:52 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
harold aptroot6-Dec-08 12:10
harold aptroot6-Dec-08 12:10 
GeneralRe: Avoid return statement in the middle - horror or not? PinPopular
PIEBALDconsult6-Dec-08 13:44
mvePIEBALDconsult6-Dec-08 13:44 
GeneralRe: Avoid return statement in the middle - horror or not? PinPopular
Graham Bradshaw6-Dec-08 7:43
Graham Bradshaw6-Dec-08 7:43 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
PIEBALDconsult6-Dec-08 11:16
mvePIEBALDconsult6-Dec-08 11:16 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
Mladen Janković9-Dec-08 5:25
Mladen Janković9-Dec-08 5:25 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
PIEBALDconsult9-Dec-08 6:53
mvePIEBALDconsult9-Dec-08 6:53 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
johannesnestler23-Dec-08 1:56
johannesnestler23-Dec-08 1:56 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
ehuysamer5-Dec-08 22:25
ehuysamer5-Dec-08 22:25 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
Tristan Rhodes5-Dec-08 23:39
Tristan Rhodes5-Dec-08 23:39 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
cokkiy6-Dec-08 1:00
cokkiy6-Dec-08 1:00 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
Robert.C.Cartaino6-Dec-08 6:05
Robert.C.Cartaino6-Dec-08 6:05 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
riced6-Dec-08 8:30
riced6-Dec-08 8:30 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
PIEBALDconsult7-Dec-08 6:15
mvePIEBALDconsult7-Dec-08 6:15 
GeneralRe: Avoid return statement in the middle - horror or not? PinPopular
Michael Dunn7-Dec-08 20:40
sitebuilderMichael Dunn7-Dec-08 20:40 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
Member 16746110-Dec-08 1:13
Member 16746110-Dec-08 1:13 
GeneralRe: Avoid return statement in the middle - horror or not? Pin
PIEBALDconsult10-Dec-08 3:16
mvePIEBALDconsult10-Dec-08 3:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.