Does my variable naming convention have a name? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T18:05:00Zhttp://stackoverflow.com/feeds/question/1140562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1140562/does-my-variable-naming-convention-have-a-name3Does my variable naming convention have a name?Peter Turner2009-07-16T21:55:53Z2009-07-17T14:59:03Z
<p>So I go by this Delphi naming scheme of arguments start with A, class vars start with F and local vars start with M. Does that scheme have a name? I see it a lot in the Delphi source I'd like to read more about it but I'm not sure what it's called. </p>
http://stackoverflow.com/questions/1140562/does-my-variable-naming-convention-have-a-name/1140574#11405746Answer by Yishai for Does my variable naming convention have a name?Yishai2009-07-16T21:58:14Z2009-07-16T21:58:14Z<p>In general, that sounds like Hungarian notation - but that doesn't specify the A, F or M convention, specifically, just the prepending of type information into the name.</p>
http://stackoverflow.com/questions/1140562/does-my-variable-naming-convention-have-a-name/1140589#11405899Answer by Stephan202 for Does my variable naming convention have a name?Stephan2022009-07-16T22:02:53Z2009-07-16T22:02:53Z<p>Your schema can be considered some form of <a href="http://en.wikipedia.org/wiki/Hungarian%5Fnotation" rel="nofollow">Hungarian notations</a> (HN). Usually HN is used to signify the <a href="http://en.wikipedia.org/wiki/Data%5Ftype" rel="nofollow"><em>type</em></a> of a variable, but as Wikipedia notes,</p>
<blockquote>
<p>The notation is sometimes extended in
C++ to include the <a href="http://en.wikipedia.org/wiki/Scope%5F%28programming%29" rel="nofollow"><strong>scope</strong></a> of a
variable, separated by an underscore.
This extension is often also used
without the Hungarian
type-specification: [..]</p>
</blockquote>
http://stackoverflow.com/questions/1140562/does-my-variable-naming-convention-have-a-name/1140670#11406705Answer by Mircea Grelus for Does my variable naming convention have a name?Mircea Grelus2009-07-16T22:30:13Z2009-07-16T22:30:13Z<p>I would say your naming convention doesn't really match the Hungarian Notation, but it tends a bit to be closer to the original Hungarian Notation invented by Charles Simonyi which came to be known as <code>Apps Hungarian</code>. But not quite.</p>
<p>There are actually two types of Hungarian Notation:</p>
<ul>
<li><strong>Apps Hungarian</strong> - the idea was to decorate identifiers names based upon the semantic information of what they store, so basically the variable's <strong>purpose</strong>:</li>
</ul>
<pre>
rwElement - variable represents a row ("rw")
colElement - variable represents a columns ("col")
</pre>
<ul>
<li><strong>Systems Hungarian</strong> - the prefix encodes the actual <strong>datatype</strong> of the variable.</li>
</ul>
<pre>
szName - variable is a zero-terminated string ("sz")
lAccount - variable is a long integer ("l")
</pre>
<p>So while you naming convention does in a way represent some sort of purpose, it's not really the purpose that Apps Hungarian refers to. </p>
http://stackoverflow.com/questions/1140562/does-my-variable-naming-convention-have-a-name/1140845#11408453Answer by Rob Kennedy for Does my variable naming convention have a name?Rob Kennedy2009-07-16T23:39:15Z2009-07-17T14:59:03Z<p>Yours is in the general class of naming conventions known as <em>Hungarian notation</em> (in the perhaps broader-than-usual sense that the name has a prefix describing the variable), but no, your convention doesn't have any more specific name.</p>
<p>I've never seen your particular choice of prefixes before. The closest I've seen is what I think of as the <em>Indy convention</em>, which uses <em>A</em> for arguments, <em>F</em> for fields, <em>G</em> for globals, <em>L</em> for locals, and of course the usual <em>I</em> for interfaces and <em>T</em> for records and classes. Properties and subroutines get no prefix.</p>
http://stackoverflow.com/questions/1140562/does-my-variable-naming-convention-have-a-name/1140902#114090211Answer by David M for Does my variable naming convention have a name?David M2009-07-17T00:03:33Z2009-07-17T00:03:33Z<p>This coding style is specifically called out in the <a href="http://edn.embarcadero.com/article/10280" rel="nofollow">Object Pascal Style Guide</a> as <em>not</em> being Hungarian notation (with one exception, <a href="http://edn.embarcadero.com/article/10280#3.3" rel="nofollow">enumerated types</a>.)</p>
<p>The specific coding conventions you're talking about don't have a name as such, as far as I know, it's simply that you're writing code conforming to the CodeGear (old Borland) coding style guide. The guide doesn't seem to give the style a name.</p>
<p>The reason you see it a lot in the Delphi source is because this guide is based on the coding style the Delphi team developed!</p>
<p>This document's well worth reading - not only for code guidelines but also out of interest for other things it mentions.</p>