我需要使用他的实例和变量的偏移来访问类的严格私有类var 值。
到目前为止尝试了这个,请检查此示例类
type
TFoo=class
strict private class var Foo: Integer;
public
constructor Create;
end;
constructor TFoo.Create;
begin
inherited;
Foo:=666;
end;
//this function works only if I declare the foo var as
//strict private var Foo: Integer;
function GetFooValue(const AClass: TFoo): Integer;
begin
Result := PInteger(PByte(AClass) + 4)^
end;
如您所见,函数GetFooValue仅在foo变量未声明为类var时才起作用。
问题是我必须如何修改GetFooValue
,以便在声明为Foo
strict private class var Foo: Integer;
的值
答案 0 :(得分:7)
要访问严格的私有类var Class Helper
以进行救援。
示例:
type
TFoo = class
strict private class var
Foo : Integer;
end;
TFooHelper = class helper for TFoo
private
function GetFooValue : Integer;
public
property FooValue : Integer read GetFooValue;
end;
function TFooHelper.GetFooValue : Integer;
begin
Result:= Self.Foo; // Access the org class with Self
end;
function GetFooValue( F : TFoo) : Integer;
begin
Result:= F.GetFooValue;
end;
Var f : TFoo;//don't need to instantiate since we only access class methods
begin
WriteLn(GetFooValue(f));
ReadLn;
end.
更新了适合问题的示例。
答案 1 :(得分:2)
你真的不能这样做。类var实现为全局变量,其内存位置与类VMT的位置(类引用指向的位置)没有任何可预测的关系,它位于< em>进程内存的常量数据区域。
如果您需要从类外部访问此变量,请声明引用它作为其支持字段的class property
。