Click here to Skip to main content
15,916,945 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.

 
GeneralRe: Converting a string to an int Pin
Shameel13-Dec-11 17:54
professionalShameel13-Dec-11 17:54 
GeneralRe: Converting a string to an int Pin
_Damian S_13-Dec-11 19:42
professional_Damian S_13-Dec-11 19:42 
GeneralRe: Converting a string to an int PinPopular
BobJanova13-Dec-11 23:29
BobJanova13-Dec-11 23:29 
GeneralRe: Converting a string to an int Pin
PIEBALDconsult14-Dec-11 1:51
mvePIEBALDconsult14-Dec-11 1:51 
GeneralRe: Converting a string to an int Pin
Shameel14-Dec-11 3:41
professionalShameel14-Dec-11 3:41 
GeneralRe: Converting a string to an int Pin
BobJanova14-Dec-11 3:50
BobJanova14-Dec-11 3:50 
RantDocumentation failure PinPopular
DerekT-P13-Dec-11 3:17
professionalDerekT-P13-Dec-11 3:17 
GeneralRe: Documentation failure Pin
GibbleCH13-Dec-11 4:29
GibbleCH13-Dec-11 4:29 
GeneralRe: Documentation failure Pin
DerekT-P13-Dec-11 4:52
professionalDerekT-P13-Dec-11 4:52 
GeneralRe: Documentation failure Pin
Nagy Vilmos13-Dec-11 5:27
professionalNagy Vilmos13-Dec-11 5:27 
GeneralRe: Documentation failure Pin
BobJanova13-Dec-11 23:42
BobJanova13-Dec-11 23:42 
GeneralRe: Documentation failure Pin
Nagy Vilmos13-Dec-11 23:54
professionalNagy Vilmos13-Dec-11 23:54 
GeneralRe: Documentation failure Pin
DerekT-P14-Dec-11 3:48
professionalDerekT-P14-Dec-11 3:48 
GeneralRe: Documentation failure Pin
Sander Rossel20-Dec-11 7:59
professionalSander Rossel20-Dec-11 7:59 
GeneralRe: Documentation failure Pin
BillW3321-Dec-11 3:05
professionalBillW3321-Dec-11 3:05 
GeneralDo you not understand booleans? PinPopular
alanevans6-Dec-11 1:11
alanevans6-Dec-11 1:11 
GeneralRe: Do you not understand booleans? PinPopular
CDP18026-Dec-11 1:49
CDP18026-Dec-11 1:49 
GeneralRe: Do you not understand booleans? PinPopular
harold aptroot6-Dec-11 2:36
harold aptroot6-Dec-11 2:36 
GeneralRe: Do you not understand booleans? Pin
Fabio Franco12-Dec-11 8:05
professionalFabio Franco12-Dec-11 8:05 
GeneralRe: Do you not understand booleans? Pin
mostlyharmless196414-Dec-11 3:15
mostlyharmless196414-Dec-11 3:15 
GeneralRe: Do you not understand booleans? Pin
Fabio Franco14-Dec-11 4:06
professionalFabio Franco14-Dec-11 4:06 
GeneralRe: Do you not understand booleans? Pin
alanevans6-Dec-11 2:58
alanevans6-Dec-11 2:58 
GeneralRe: Do you not understand booleans? Pin
CDP18026-Dec-11 3:26
CDP18026-Dec-11 3:26 
GeneralRe: Do you not understand booleans? Pin
alanevans6-Dec-11 3:54
alanevans6-Dec-11 3:54 
GeneralRe: Do you not understand booleans? Pin
CDP18026-Dec-11 4:16
CDP18026-Dec-11 4:16 
Fine. Now what if a is a (signed) integer and has a negative value? Or what if a is a pointer which is currently NULL? Without having defined any value for TRUE or FALSE and without knowing how NULL was defined somewhere deep in the libraries, how do you now know which code will be executed and which not? Even if NULL is usually defined as 0x00, you cannot expect this to be true for every compiler. And what can happen if you use another compiler?

int*   a = NULL;
int    b = -42;


if(a)
{
    // We should not need to know how NULL is defined and therefore can never know wether
    // or not this code block will ever be entered
}

if(a == NULL)
{
    // Now we explicitly compared with NULL and it is clear when this code will be executed
}

if(b)
{
    // Negative values are undefined and it is up to the compiler wether a negative value is
    // seen as 'true' or as 'false'
}

if(b < 0)
{
    // Explicitly testing the variable again removes all uncertainties
}

And from the clouds a mighty voice spoke:
"Smile and be happy, for it could come worse!"

And I smiled and was happy
And it came worse.



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.