Weird constants - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T15:15:14Zhttp://stackoverflow.com/feeds/question/522286http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/522286/weird-constants17Weird constantsQuassnoi2009-02-06T21:38:01Z2009-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#52229616Answer by Johannes Weiß for Weird constantsJohannes Weiß2009-02-06T21:39:55Z2009-02-06T21:39:55Z<pre><code>#define private public
</code></pre>
http://stackoverflow.com/questions/522286/weird-constants/522301#52230113Answer by David Morton for Weird constantsDavid Morton2009-02-06T21:41:02Z2009-02-06T21:41:02Z<pre><code>#define TEN 9
</code></pre>
http://stackoverflow.com/questions/522286/weird-constants/522302#52230211Answer by Matthew Crumley for Weird constantsMatthew Crumley2009-02-06T21:41:07Z2009-02-06T21:41:07Z<pre><code>#define TRUE 0
#define FALSE 1
</code></pre>
http://stackoverflow.com/questions/522286/weird-constants/522308#5223086Answer by MrTelly for Weird constantsMrTelly2009-02-06T21:42:46Z2009-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#52231617Answer by Dour High Arch for Weird constantsDour High Arch2009-02-06T21:43:34Z2009-02-06T21:43:34Z<pre><code>char *myGodItsFullOfStars = "********************************************************************************";
</code></pre>
http://stackoverflow.com/questions/522286/weird-constants/522322#52232224Answer by eduffy for Weird constantseduffy2009-02-06T21:45:34Z2009-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#5223246Answer by Adam Rosenfield for Weird constantsAdam Rosenfield2009-02-06T21:46:49Z2009-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#5223548Answer by eleven81 for Weird constantseleven812009-02-06T21:56:03Z2009-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#5223601Answer by Rontologist for Weird constantsRontologist2009-02-06T21:57:33Z2009-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#5224021Answer by Brian Postow for Weird constantsBrian Postow2009-02-06T22:05:19Z2009-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#52243314Answer by JohnFx for Weird constantsJohnFx2009-02-06T22:15:42Z2009-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#5224960Answer by Oscar Cabrero for Weird constantsOscar Cabrero2009-02-06T22:29:16Z2009-02-06T22:29:16Z<pre><code>#define ADMIN "Admin"
</code></pre>
http://stackoverflow.com/questions/522286/weird-constants/522609#5226096Answer by luke for Weird constantsluke2009-02-06T23:02:33Z2009-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#5226502Answer by paxdiablo for Weird constantspaxdiablo2009-02-06T23:24:49Z2009-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#5226714Answer by Jacob Adams for Weird constantsJacob Adams2009-02-06T23:34:32Z2009-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#5226730Answer by Calyth for Weird constantsCalyth2009-02-06T23:36:01Z2009-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#5419020Answer by JohnFx for Weird constantsJohnFx2009-02-12T15:49:06Z2009-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#5419322Answer by JosephStyons for Weird constantsJosephStyons2009-02-12T15:54:58Z2009-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#5419722Answer by annakata for Weird constantsannakata2009-02-12T15:59:42Z2009-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#5420032Answer by Oliver Hallam for Weird constantsOliver Hallam2009-02-12T16:04:29Z2009-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#10515900Answer by ScottSEA for Weird constantsScottSEA2009-06-26T22:41:51Z2009-06-26T22:41:51Z<pre>#define WTF "What the... ?"</pre>
http://stackoverflow.com/questions/522286/weird-constants/1051617#10516172Answer by MiffTheFox for Weird constantsMiffTheFox2009-06-26T22:50:32Z2009-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#10516223Answer by Ken for Weird constantsKen2009-06-26T22:51:50Z2009-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>