Weird constants - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T15:15:14Z http://stackoverflow.com/feeds/question/522286 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/522286/weird-constants 17 Weird constants Quassnoi 2009-02-06T21:38:01Z 2009-06-27T20:18:43Z <p>I've seen these in real code:</p> <pre><code>#define SCREEN_DIMENSIONS 2 #define THREE_THOUSAND_FIVE_HUNDRED_TWENTY_TWO 3522 </code></pre> <p>What is the weirdest constant you've ever seen?</p> <p>P. S. And of course my favorite in JScript:</p> <pre><code>bool b; switch (b.ToString().length) { case 4: // true ... break; case 5: // false ... break; ) </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522296#522296 16 Answer by Johannes Weiß for Weird constants Johannes Weiß 2009-02-06T21:39:55Z 2009-02-06T21:39:55Z <pre><code>#define private public </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522301#522301 13 Answer by David Morton for Weird constants David Morton 2009-02-06T21:41:02Z 2009-02-06T21:41:02Z <pre><code>#define TEN 9 </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522302#522302 11 Answer by Matthew Crumley for Weird constants Matthew Crumley 2009-02-06T21:41:07Z 2009-02-06T21:41:07Z <pre><code>#define TRUE 0 #define FALSE 1 </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522308#522308 6 Answer by MrTelly for Weird constants MrTelly 2009-02-06T21:42:46Z 2009-02-06T21:42:46Z <p>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</p> <pre><code>Goto :TheBowserBar </code></pre> <p>The code layout only made sense if you knew the city really well - strange.</p> http://stackoverflow.com/questions/522286/weird-constants/522316#522316 17 Answer by Dour High Arch for Weird constants Dour High Arch 2009-02-06T21:43:34Z 2009-02-06T21:43:34Z <pre><code>char *myGodItsFullOfStars = "********************************************************************************"; </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522322#522322 24 Answer by eduffy for Weird constants eduffy 2009-02-06T21:45:34Z 2009-02-06T21:45:34Z <p>The Android's accelerometer API has gravitational constants for different planets.</p> <p><a href="http://code.google.com/android/reference/android/hardware/SensorManager.html" rel="nofollow">http://code.google.com/android/reference/android/hardware/SensorManager.html</a></p> http://stackoverflow.com/questions/522286/weird-constants/522324#522324 6 Answer by Adam Rosenfield for Weird constants Adam Rosenfield 2009-02-06T21:46:49Z 2009-02-06T21:46:49Z <p>From <a href="http://thedailywtf.com/Articles/The_Brillant_Paula_Bean.aspx" rel="nofollow">The Daily WTF</a>:</p> <pre><code>private String paula = "Brillant"; </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522354#522354 8 Answer by eleven81 for Weird constants eleven81 2009-02-06T21:56:03Z 2009-02-06T21:56:03Z <p>To comply with <a href="http://www.agecon.purdue.edu/crd/Localgov/Second%20Level%20pages/indiana_pi_bill.htm" rel="nofollow">Indiana H.B. 246</a>:</p> <pre><code>#ifdef INDIANA const float PI = 3.2; #endif </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522360#522360 1 Answer by Rontologist for Weird constants Rontologist 2009-02-06T21:57:33Z 2009-02-17T18:46:17Z <pre><code>/** SUBVERSION REVISION OF THE FILE */ private String SVN_REVISION = 34234; </code></pre> <p>I still haven't figured it out. It was littered in a few dozen files, and never used.</p> http://stackoverflow.com/questions/522286/weird-constants/522402#522402 1 Answer by Brian Postow for Weird constants Brian Postow 2009-02-06T22:05:19Z 2009-02-06T22:05:19Z <p>Never seen it, but really want:</p> <pre><code>#define MAGIC "more magic" </code></pre> <p>We have a bunch of magic #defines here that we use as the kernal of license keys...</p> http://stackoverflow.com/questions/522286/weird-constants/522433#522433 14 Answer by JohnFx for Weird constants JohnFx 2009-02-06T22:15:42Z 2009-06-27T20:18:43Z <pre><code>#define NUMBER_OF_CONSTANTS_NOT_INCLUDING_THIS_ONE 4 #define NUMBER_OF_CONSTANTS_INCLUDING_THE_LAST_ONE_BUT_NOT_THIS_ONE 5 </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522496#522496 0 Answer by Oscar Cabrero for Weird constants Oscar Cabrero 2009-02-06T22:29:16Z 2009-02-06T22:29:16Z <pre><code>#define ADMIN "Admin" </code></pre> http://stackoverflow.com/questions/522286/weird-constants/522609#522609 6 Answer by luke for Weird constants luke 2009-02-06T23:02:33Z 2009-02-06T23:02:33Z <pre><code>//Thank you Crash Macro!!! #define CRASH (*((void*) 0))++ </code></pre> <p>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:</p> <pre><code>if(v == SOMETHING_WRONG) CRASH; </code></pre> <p>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).</p> http://stackoverflow.com/questions/522286/weird-constants/522650#522650 2 Answer by paxdiablo for Weird constants paxdiablo 2009-02-06T23:24:49Z 2009-02-06T23:24:49Z <p>From the early days of C:</p> <pre><code>#define PI 3.14159 /* should the value of PI ever change */ </code></pre> <p>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.</p> http://stackoverflow.com/questions/522286/weird-constants/522671#522671 4 Answer by Jacob Adams for Weird constants Jacob Adams 2009-02-06T23:34:32Z 2009-02-06T23:34:32Z <p>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...</p> <p>Private Const MAGIC_NUMBER as Integer = 7;</p> http://stackoverflow.com/questions/522286/weird-constants/522673#522673 0 Answer by Calyth for Weird constants Calyth 2009-02-06T23:36:01Z 2009-02-06T23:36:01Z <p>function signature that look like:</p> <pre><code>void FAR PASCAL function()... </code></pre> <p>where:</p> <pre><code>#define FAR far #define PASCAL __stdcall </code></pre> http://stackoverflow.com/questions/522286/weird-constants/541902#541902 0 Answer by JohnFx for Weird constants JohnFx 2009-02-12T15:49:06Z 2009-02-12T15:49:06Z <p>Here is one right from our own community.</p> <pre><code>#define TRUE 0 #define FALSE 1 </code></pre> <p><a href="http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c">http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c</a></p> http://stackoverflow.com/questions/522286/weird-constants/541932#541932 2 Answer by JosephStyons for Weird constants JosephStyons 2009-02-12T15:54:58Z 2009-02-12T15:54:58Z <p>This in an application that deals a LOT with ton / lbs conversions:</p> <pre><code>const ONE_TON_IN_LBS = 1999.6 </code></pre> http://stackoverflow.com/questions/522286/weird-constants/541972#541972 2 Answer by annakata for Weird constants annakata 2009-02-12T15:59:42Z 2009-02-12T15:59:42Z <p>From the <a href="http://thedailywtf.com/Articles/Elegant-Syntax-Error.aspx" rel="nofollow">DailyWTF</a></p> <pre><code>#define whilst while </code></pre> <p>Personally, in Authorware (which allowed spaces in variables names)</p> <pre><code>booBoolMoveOnIsOn True := 1 </code></pre> http://stackoverflow.com/questions/522286/weird-constants/542003#542003 2 Answer by Oliver Hallam for Weird constants Oliver Hallam 2009-02-12T16:04:29Z 2009-02-12T16:04:29Z <p>I'm not sure if this counts, but</p> <pre><code>#define COMMA , </code></pre> <p>I can't remember the specifics, but this was necessary for nesting template arguments.</p> http://stackoverflow.com/questions/522286/weird-constants/1051590#1051590 0 Answer by ScottSEA for Weird constants ScottSEA 2009-06-26T22:41:51Z 2009-06-26T22:41:51Z <pre>#define WTF "What the... ?"</pre> http://stackoverflow.com/questions/522286/weird-constants/1051617#1051617 2 Answer by MiffTheFox for Weird constants MiffTheFox 2009-06-26T22:50:32Z 2009-06-26T22:50:32Z <p>Here's my personal favorite form TDWTF: <a href="http://thedailywtf.com/Articles/_0x23_include__0x22_pascal_0x2e_h_0x22_.aspx" rel="nofollow">pascal.h</a></p> <pre><code>#define procedure void #define then #define is #define not != #define begin { #define end } </code></pre> http://stackoverflow.com/questions/522286/weird-constants/1051622#1051622 3 Answer by Ken for Weird constants Ken 2009-06-26T22:51:50Z 2009-06-26T22:51:50Z <p>Not a constant, but related to your dimensions=2 remark: When I was at UW, the manpage for the print spooler had something like:</p> <pre><code>--duplex n Print on this many sides of the page. Acceptable values (until we obtain more versatile printers) are 1 and 2. </code></pre>