vote up 3 vote down star

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.

flag

74% accept rate
4  
Naming global variables with F is asking for confusion. F is the convention for field names, not globals. – Rob Kennedy Jul 16 at 23:30
Right, I meant class variables, I almost never use globals so I just called 'em the wrong thing. – Peter Turner Jul 17 at 13:10
Where did I get M from? – Peter Turner Jul 21 at 17:10

5 Answers

vote up 11 vote down check

This coding style is specifically called out in the Object Pascal Style Guide as not being Hungarian notation (with one exception, enumerated types.)

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.

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!

This document's well worth reading - not only for code guidelines but also out of interest for other things it mentions.

link|flag
WTF? why was this voted down? This IMO is the best answer, its certainly the most correct. In fact I removed my answer because this one is better. – Tim Jarvis Jul 17 at 0:22
heh heh, they really need to remove Charlie Calvert's old Borland email address from that doc. Charlie now works for Microsoft. – Tim Jarvis Jul 17 at 0:27
Although the answer is a great answer (and I upvoted it), for giving the reference to where the style comes from, the document as I read it did call it Hungarian notation when it says: "The exception to the Hungarian notation rule is in enumerated types." i.e. the regular F convention is hungarian notation. – Yishai Jul 17 at 1:44
Thanks for the comment, Yishai. To clarify what I wrote, I read it differently - it says "we discourage the use of notation, except where required in header translations" and gives a "correct" example as "FMyString: string;" and "incorrect" as "lpstrMyString: string;". I think "lpstr" is the Hungarian notation prefix and "F" is not, by their definitions. Enumerations are the exception because they are prefixed with characters indicating the type of enumeration, eg "bkOk" for "Button Kind". Really this is an issue of semantics, it is arguable scope specifiers are Hungarian I suppose :) – David M Jul 17 at 3:21
I guess "by their definition" is the key here - I personally prefix my variables with scope specifiers but don't think of it as Hungarian, because it indicates neither type (int32, char*) nor usage (number, string). – David M Jul 17 at 3:26
show 2 more comments
vote up 3 vote down

Yours is in the general class of naming conventions known as Hungarian notation (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.

I've never seen your particular choice of prefixes before. The closest I've seen is what I think of as the Indy convention, which uses A for arguments, F for fields, G for globals, L for locals, and of course the usual I for interfaces and T for records and classes. Properties and subroutines get no prefix.

link|flag
Did you just make that name up from the correlation between the Delphi RTL and Indy Source or did Borland Programmer actually pick that stuff up from Indy guys in the early days of Delphi? I don't have any source earlier than Delphi 7 so I can't see a difference. – Peter Turner Jul 17 at 13:48
The F, I, and T prefixes are used near-universally, and the A prefix is very common. Use of prefixes on globals and locals is something I most associate with Indy; I'm not aware of any G or L prefixes in the Borland code. – Rob Kennedy Jul 17 at 14:09
vote up 5 vote down

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 Apps Hungarian. But not quite.

There are actually two types of Hungarian Notation:

  • Apps Hungarian - the idea was to decorate identifiers names based upon the semantic information of what they store, so basically the variable's purpose:
    rwElement - variable represents a row ("rw")
    colElement - variable represents a columns ("col")
  • Systems Hungarian - the prefix encodes the actual datatype of the variable.
    szName - variable is a zero-terminated string ("sz")
    lAccount - variable is a long integer ("l")

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.

link|flag
2  
He's using a form of Hungarian which indicates scope. I wouldn't say that is any closer to purpose than it is to datatype. – Kevin Peterson Jul 16 at 22:33
My rationale was that it's nowhere near a datatype, but scope when designing the app has a purpose. It's not the same purpose of course, but out of the two, it is closer to being like that for a purpose. – Mircea Grelus Jul 16 at 22:42
vote up 9 vote down

Your schema can be considered some form of Hungarian notations (HN). Usually HN is used to signify the type of a variable, but as Wikipedia notes,

The notation is sometimes extended in C++ to include the scope of a variable, separated by an underscore. This extension is often also used without the Hungarian type-specification: [..]

link|flag
vote up 6 vote down

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.

link|flag
I thought hungarian put type and content information in there--like piVar if var is a pointer to an int and also specified a set of values to use. I mean I thought it was more specific than just "prefixing" but I could be wrong. – Bill K Jul 16 at 21:59
2  
Hungarian notation can be done in different ways, but as a general rule putting language specific information in the variable name is called Hungarian notation. Joel famously argues that it should be used differently altogether, but regardless of how it "should" be, this is what people call it. joelonsoftware.com/articles/Wrong.html – Yishai Jul 16 at 22:10
Then again, Delphi's type system makes the problems that Joel's "good Hungarian" solves obsolete. If you want a special type of integer or string that isn't assignment-compatible with normal integers or strings, you can declare one by using the "type" keyword inside the type definition, and have the compiler catch these errors for you. – Mason Wheeler Jul 16 at 22:43
1  
No, Mason, those are still assignment-compatible. For example, you can assign a Double to a TDateTime and vice versa, despite their being two distinct types. Likewise for AnsiString and Utf8String in Delphi 7-2007. What you're not allowed to do is pass one type to a function as a var parameter when another type is expected. – Rob Kennedy Jul 16 at 23:29

Your Answer

Get an OpenID
or

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