vote up 17 vote down star
7

I've seen these in real code:

#define SCREEN_DIMENSIONS 2
#define THREE_THOUSAND_FIVE_HUNDRED_TWENTY_TWO 3522

What is the weirdest constant you've ever seen?

P. S. And of course my favorite in JScript:

bool b;
switch (b.ToString().length) {
case 4: // true
  ...
  break;
case 5:  // false
  ...
  break;
)
flag
Funny, but should be community wiki. – Dour High Arch Feb 6 at 22:38
2  
You won't be so derogatory when we're all using 3D monitors, will you? This guy will just change his one line and re-compile. Everyone else's code will require massive changes. :-) – paxdiablo Feb 6 at 23:26
2  
@pax: In fact, this constant should remain back from 70's with their 1D monitors. – Quassnoi Feb 6 at 23:36
How COBOL-like :) – gbarry Feb 17 at 17:30

23 Answers

vote up 24 vote down check

The Android's accelerometer API has gravitational constants for different planets.

http://code.google.com/android/reference/android/hardware/SensorManager.html

link|flag
I like GRAVITY_DEATH_STAR_I :D – Rob Prouse Feb 6 at 21:49
I seem to remember this thread on Reddit... wasn't there a Roasanne Barr joke in there, somewhere? – Randolpho Feb 6 at 22:16
They need GRAVITY_ISS = 0 (or maybe GRAVITY_ORBIT) for the space station. – Matthew Crumley Feb 12 at 16:56
1  
YAGNI is (in)action. – paxdiablo Feb 13 at 3:05
My personal favorite is GRAVITY_THE_ISLAND. Although, nobody ever heard from the people who went there to test it out. – MiffTheFox Jun 26 at 22:44
show 1 more comment
vote up 3 vote down

Not a constant, but related to your dimensions=2 remark: When I was at UW, the manpage for the print spooler had something like:

--duplex n   Print on this many sides of the page.  Acceptable values
             (until we obtain more versatile printers) are 1 and 2.
link|flag
vote up 2 vote down

Here's my personal favorite form TDWTF: pascal.h

#define procedure void
#define then
#define is
#define not !=
#define begin {
#define end }
link|flag
vote up 0 vote down
#define WTF "What the... ?"
link|flag
vote up 2 vote down

I'm not sure if this counts, but

#define COMMA ,

I can't remember the specifics, but this was necessary for nesting template arguments.

link|flag
Yep .. MY_MACRO(std::map<int, int>) won't parse correctly (the C preprocessor isn't smart enough to treat <> like () or []). – eduffy Jul 21 at 19:37
vote up 2 vote down

From the DailyWTF

#define whilst while

Personally, in Authorware (which allowed spaces in variables names)

booBoolMoveOnIsOn True := 1
link|flag
vote up 2 vote down

This in an application that deals a LOT with ton / lbs conversions:

const ONE_TON_IN_LBS = 1999.6
link|flag
vote up 0 vote down

Here is one right from our own community.

#define TRUE 0
#define FALSE 1

http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c

link|flag
vote up 0 vote down

function signature that look like:

void FAR PASCAL function()...

where:

#define FAR far
#define PASCAL __stdcall
link|flag
vote up 4 vote down

We complained to another programmer about him having too many "magic numbers" in his code and that he should turn them into constants. We should have more specific...

Private Const MAGIC_NUMBER as Integer = 7;

link|flag
vote up 2 vote down

From the early days of C:

#define PI 3.14159 /* should the value of PI ever change */

Yes, I know they meant the constant, but I wonder what sort of extreme universe-altering behavior would have to occur for the actual value of PI to change.

link|flag
Maybe if new calculators are invented that show our calculations were wrong :P – Hosam Aly Feb 7 at 6:32
4  
The #define makes sense, the comment is obviously a joke. Among the sort of people who do this, thought-provoking jokes are often considered the best. – David Thornley Feb 12 at 16:04
Perhaps at Apple? (see: Reality Distortion Field) – gbarry Feb 17 at 17:38
#define PI 3 in the simpsons world – Jonathan Jun 22 at 18:08
vote up 6 vote down
//Thank you Crash Macro!!!
#define CRASH (*((void*) 0))++

I actually used that one in a project where i was doing some programming with a simulator that had no debugger. It went something like this:

if(v == SOMETHING_WRONG)
    CRASH;

Then I got to spend a few hours looking at memory dumps in a hex editor to find out what happened. (also the comment was obligatory).

link|flag
vote up 0 vote down
#define ADMIN "Admin"
link|flag
vote up 14 vote down
#define NUMBER_OF_CONSTANTS_NOT_INCLUDING_THIS_ONE  4
#define NUMBER_OF_CONSTANTS_INCLUDING_THE_LAST_ONE_BUT_NOT_THIS_ONE  5
link|flag
+NUMBER_OF_CONSTANTS_NEEDED_TO_INDICATE_UPVOTE – David Feb 6 at 23:14
I... I don't want to believe that this actually exists. Please tell me you made this up. – JS Bangs Feb 6 at 23:37
Kurt Godel made this up – 1800 INFORMATION Feb 6 at 23:39
Sure about Goedel? I'd have picked Bertrand Russell, myself. – David Thornley Feb 12 at 15:59
4  
I don't understand why those two macros should have different values. – Jeffrey L Whitledge Feb 12 at 16:01
show 3 more comments
vote up 1 vote down

Never seen it, but really want:

#define MAGIC "more magic"

We have a bunch of magic #defines here that we use as the kernal of license keys...

link|flag
Gotta include the link: catb.org/jargon/html/magic-story.html – Joe White Jun 26 at 22:53
vote up 1 vote down
/** SUBVERSION REVISION OF THE FILE */
private String SVN_REVISION = 34234;

I still haven't figured it out. It was littered in a few dozen files, and never used.

link|flag
You don't suppose something was writing it into the source file? – gbarry Feb 17 at 17:36
Let's say you forgot the quotes; this is clearly something added by a script. CVS/RCS had something like that, you can see it sometimes, when you put $Version$ in a file, it gets replaced with the version number on commit. It's not used by the code, but it's written to the class files and might be used by exception or debugging code to generate stack trace with version info. – niXar Jun 27 at 20:38
vote up 8 vote down

To comply with Indiana H.B. 246:

#ifdef INDIANA
const float PI = 3.2;
#endif
link|flag
1  
Didn't this bill fail? In 1897? – David Morton Feb 6 at 22:02
vote up 6 vote down

From The Daily WTF:

private String paula = "Brillant";
link|flag
Not really a constant... – Ed Swangren Feb 6 at 21:48
Not really "Brillant" either. – Joel Coehoorn Feb 6 at 21:54
Very funny, that was the first TDWTF article that I ever read. – Ed Swangren Feb 6 at 22:16
It's not declared constant, but it's a private member of a class which is never modified, so it's semantically a constant. – Adam Rosenfield Feb 6 at 22:18
strings are constant – 1800 INFORMATION Feb 6 at 23:39
vote up 17 vote down
char *myGodItsFullOfStars = "********************************************************************************";
link|flag
1  
Dave... Dave.... What are you doing Dave? Dave? Priceless. – David Morton Feb 6 at 21:58
3  
My mind is going. I can feel it. – Randolpho Feb 6 at 22:19
1  
Daaaaaiiiissyyyyyy... – gnovice Feb 12 at 15:54
vote up 6 vote down

Not the same, but I worked on a code base where the variables and labels where named after streets and pubs in Glasgow. So you could write code like

Goto :TheBowserBar

The code layout only made sense if you knew the city really well - strange.

link|flag
vote up 11 vote down
#define TRUE 0
#define FALSE 1
link|flag
I've seen that one before too - what are these people thinking – MrTelly Feb 6 at 21:43
3  
Obligatory: #define FILE_NOT_FOUND 2 – Outlaw Programmer Feb 6 at 22:11
1  
@Randolpho: thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx/… – Adam Rosenfield Feb 6 at 22:20
1  
Randolpho, C conditions treat 0 as false and everything else as true. This is a recipe for problems, such as if somebody writes "while(TRUE)". – David Thornley Feb 12 at 16:01
1  
@Outlaw Programmer... I'm so proud! – Mark Harrison Apr 25 at 4:31
show 3 more comments
vote up 13 vote down
#define TEN 9
link|flag
is that from someone with a problem with zero-index arrays? – annakata Feb 12 at 16:05
1  
I could make a case for this...but I only have 229 characters to do so. – gbarry Feb 17 at 17:34
oh god, this one is awesome – Eric Jun 26 at 22:55
vote up 16 vote down
#define private public
link|flag
In some C++ unit tests maybe? – unknown (google) Feb 6 at 21:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.