This is a follow-up question to: How to hide a protected procedure of an object?
(I'm a bit fuzzy on the whole class helper concept)

Suppose I have an class like:

type 
TShy = class(TObject) 
strict private
  procedure TopSecret;
private
  procedure DirtyLaundry;  
protected 
  procedure ResistantToChange;
end; 

I know I can access the private method if I have the source code by adding a descendent class in the same unit.

I have 2 questions:
- How do I employ a class helper to access the strict private member?
- Can I use a class helper in a separate unit to access (strict) private members?

link|improve this question

73% accept rate
See also this SO question: access-a-strict-protected-property-of-a-delphi-class – LU RD Feb 23 at 16:46
feedback

1 Answer

up vote 16 down vote accepted

You can use a class helper like this:

unit Shy;

interface

type
  TShy = class(TObject)
  strict private
    procedure TopSecret;
  private
    procedure DirtyLaundry;
  protected
    procedure ResistantToChange;
  end;

unit NotShy;

interface

uses Shy;

type
  TNotShy = class helper for TShy
  public
    procedure LetMeIn;
  end;

implementation

procedure TNotShy.LetMeIn;
begin
  Self.TopSecret;
  Self.DirtyLaundry;
  Self.ResistantToChange;
end;

end.

.

uses
  ..., Shy, NotShy;

procedure TestShy;
var
  Shy: TShy;
begin
  Shy := TShy.Create;
  Shy.LetMeIn;
  Shy.Free;
end;
link|improve this answer
JFTR: In D2007, the Self.DirtyLaundry; and Self.ResistantToChange; lines don't compile while Self.TopSecret; does. I.e. you have access to strict private members but not to private or protected members. :-D – Ulrich Gerhardt Feb 23 at 10:41
3  
+1 for naming, hilarious!! (: – Dorin Duminica Feb 23 at 10:50
Thanks, just to be clear on this, in D2007 the helper will only let me access strict private members like this, in Delphi 2010 and up the helper will let me access all class members. Correct? – Johan Feb 23 at 10:55
@Johan, I just copy&pasted Remy's code into a D2007 test project and had to comment out the DirtyLaundry and ResistantToChange lines. The TopSecret line compiled fine. – Ulrich Gerhardt Feb 23 at 11:26
2  
I tested what I posted in XE2 and everything works. – Remy Lebeau Feb 23 at 19:25
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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