Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In C++/C# the common convention for private class vars is m_MyPrivateVar, and I belive "m_" stands for "my" (I might be wrong).

In Delphi, private class variables begin with F, e.g. FHandle etc.

What does the F means? Foo? :)

share|improve this question
6  
... field ..... – Sertac Akyuz Jan 10 at 22:29
@SertacAkyuz, are you sure??? :) – Vlad Jan 10 at 22:30
2  
Oh yes he is :) – whosrdaddy Jan 10 at 22:31
1  
And the m stands for member. Foo isn't actually a word! And m_ is not the convention in C#. – David Heffernan Jan 10 at 22:45
2  
show 2 more comments

1 Answer

up vote 6 down vote accepted

There are some naming conventions not to get lost in code.

Here is an example to point out why this is useful.

// Types begins with T
TFoo = class
strict private
  // sometimes I saw strict private fields beginning with underscore
  // I like this too 
  _Value : string;
private
  // private class vars are Fields and therefore begins with F
  FValue : string;
  function GetValue : string;
public
  property Value : string read GetValue write FValue;

  // Parameters should NOT begin with P (P is for Pointer) but with A
  // because "i will pass A value" :o)
  function GetSomething( const AValue : string ) : string;
end;

function TFoo.GetValue : string;
begin
  Result := '*' + FValue + '*';
end;    

function TFoo.GetSomething( const AValue : string ) : string;
var
  // IMHO there is no naming convention to Local vars
  // but mine begins with L
  LValue : string;
begin

  LValue { local var } := 
    Value   { property via getter }  + 
    AValue  { parameter } + 
    FValue  { field };

  Result := LValue;
end; 
share|improve this answer
1  
.Douze points!. – Vlad Jan 10 at 23:29
9  
The "A" in parameters came from "Argument". – Cesar Romero Jan 11 at 0:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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