在Delphi 10 Seattle中,我可以使用以下代码来解决过于严格的可见性限制。
如何访问私有变量?
type
TBase = class(TObject)
private
FMemberVar: integer;
end;
如何访问普通或虚拟私有方法?
type
TBase2 = class(TObject)
private
procedure UsefullButHidden;
procedure VirtualHidden; virtual;
procedure PreviouslyProtected; override;
end;
Previously I would use a class helper to break open the base class.
type
TBaseHelper = class helper for TBase
function GetMemberVar: integer;
在Delphi 10.1 Berlin中,类助手不再能够访问主题类或记录的私有成员。
是否有其他方式可以访问私人会员?
答案 0 :(得分:21)
如果为类私有成员生成了扩展的RTTI信息 - 字段和/或方法,您可以使用它来获取对它们的访问权。
当然,通过RTTI进行访问的速度比通过类帮助程序慢。
访问方法:
var
Base: TBase2;
Method: TRttiMethod;
Method := TRttiContext.Create.GetType(TBase2).GetMethod('UsefullButHidden');
Method.Invoke(Base, []);
访问变量:
var
Base: TBase;
v: TValue;
v := TRttiContext.Create.GetType(TBase).GetField('FMemberVar').GetValue(Base);
为RTL / VCL / FMX类生成的默认RTTI信息如下
private
,protected
,public
,published
public
,published
public
,published
不幸的是,这意味着无法通过RTTI访问核心Delphi库的私有方法。 @LU RD's answer涵盖了允许对没有扩展RTTI的类进行私有方法访问的hack。
答案 1 :(得分:19)
在Delphi 10.1 Berlin中,仍有一种方法可以使用class helpers
访问私有方法:
type
TBase2 = class(TObject)
private
procedure UsefullButHidden;
procedure VirtualHidden; virtual;
procedure PreviouslyProtected; override;
end;
TBase2Helper = class helper for TBase2
procedure OpenAccess;
end;
procedure TBase2Helper.OpenAccess;
var
P : procedure of object;
begin
TMethod(P).Code := @TBase2.UsefullButHidden;
TMethod(P).Data := Self;
P; // Call UsefullButHidden;
// etc
end;
遗憾的是,无法通过Delphi 10.1 Berlin的类帮助程序访问严格的私有/私有字段。 RTTI是一种选择,但如果性能至关重要,可以认为它很慢。
这是一种使用类助手和RTTI定义启动时字段的偏移量的方法:
type
TBase = class(TObject)
private // Or strict private
FMemberVar: integer;
end;
type
TBaseHelper = class helper for TBase
private
class var MemberVarOffset: Integer;
function GetMemberVar: Integer;
procedure SetMemberVar(value: Integer);
public
class constructor Create; // Executed at program start
property MemberVar : Integer read GetMemberVar write SetMemberVar;
end;
class constructor TBaseHelper.Create;
var
ctx: TRTTIContext;
begin
MemberVarOffset := ctx.GetType(TBase).GetField('FMemberVar').Offset;
end;
function TBaseHelper.GetMemberVar: Integer;
begin
Result := PInteger(Pointer(NativeInt(Self) + MemberVarOffset))^;
end;
procedure TBaseHelper.SetMemberVar(value: Integer);
begin
PInteger(Pointer(NativeInt(Self) + MemberVarOffset))^ := value;
end;
这样做的好处是慢速RTTI部分只执行一次。
注意:使用RTTI访问受保护/私有方法
RTL / VCL / FMX尚未声明使用RTTI访问受保护/私有方法的可见性。必须使用本地指令{$RTTI}进行设置。
使用 RTTI 访问其他代码中的私有/受保护方法需要例如设置:
{$RTTI EXPLICIT METHODS([vcPublic, vcProtected, vcPrivate])}
答案 2 :(得分:12)
如果您想要一种不影响性能的干净方式,您仍然可以使用with语句从记录助手访问私有字段。
function TValueHelper.GetAsInteger: Integer;
begin
with Self do begin
Result := FData.FAsSLong;
end;
end;
我希望他们保持这种方法的开放,因为我们的代码具有高性能要求。
答案 3 :(得分:10)
假设扩展的RTTI不可用,那么在不诉诸黑客的情况下,您无法从不同单位的代码访问私有成员。当然,如果RTTI可用,则可以使用它。
据我了解,使用帮助者破解私人成员的能力是一次无意的事故。目的是私有成员只能从同一单元中的代码中看到,而严格的私有成员只能从同一个类中的代码中看到。这一变化纠正了事故。
如果没有让编译器为你破解课程的能力,你需要采用其他方法来实现这一目标。例如,您可以重新声明足够的TBase
类,以便能够欺骗编译器告诉您成员所在的位置。
type
THackBase = class(TObject)
private
FMemberVar: integer;
end;
现在你可以写
了var
obj: TBase;
....
MemberVar := THackBase(obj).FMemberVar;
但是这很脆弱,一旦TBase
的布局发生变化就会中断。
这适用于数据成员,但对于非虚方法,您可能需要使用运行时反汇编技术来查找代码的位置。对于虚拟成员,此技术可用于查找VMT偏移量。
进一步阅读:
答案 4 :(得分:4)
如果您不需要ARM编译器支持,您可以找到另一个解决方案here。
使用内联asembler,您可以轻松访问私有字段或方法。
我认为David's answer在大多数情况下更好,但如果您需要巨大类的快速解决方案,则此方法可能更有用。< / p>
更新(6月17日):我刚注意到,我忘了从他的post分享访问私有字段的示例代码。遗憾。
unit UnitA;
type
THoge = class
private
FPrivateValue: Integer;
procedure PrivateMethod;
end;
end.
unit UnitB;
type
THogeHelper = class helper for THoge
public
function GetValue: Integer;
procedure CallMethod;
end;
function THogeHelper.GetValue: Integer;
asm
MOV EAX,Self.FPrivateValue
end;
procedure THogeHelper.CallMethod;
asm
CALL THoge.PrivateMethod
end;
以下是调用私有方法的示例代码。
type
THoge = class
private
procedure PrivateMethod (Arg1, Arg2, Arg3 : Integer);
end;
// Method 1
// Get only method pointer (if such there is a need to assign a method pointer to somewhere)
type
THogePrivateProc = procedure (Self: THoge; Arg1, Arg2, Arg3: Integer);
THogePrivateMethod = procedure (Arg1, Arg2, Arg3: Integer) of object;
function THogeHelper.GetMethodAddr: Pointer;
asm
{$ifdef CPUX86}
LEA EAX, THoge.PrivateMethod
{$else}
LEA RAX, THoge.PrivateMethod
{$endif}
end;
var
hoge: THoge;
proc: THogePrivateProc;
method: THogePrivateMethod;
begin
// You can either in here of the way,
proc := hoge.GetMethodAddr;
proc (hoge, 1, 2, 3);
// Even here of how good
TMethod (method) .Code := hoge.GetMethodAddr;
TMethod (method) .Data := hoge;
method (1, 2, 3) ;
end;
// Method 2
// To jump (here is simple if you just simply call)
procedure THogeHelper.CallMethod (Arg1, Arg2, Arg3 : Integer);
asm
JMP THoge.PrivateMethod
end;
unit UnitA;
type
THoge = class
private
FPrivateValue: Integer;
procedure PrivateMethod;
end;
end.
答案 5 :(得分:0)
只需使用'with'语句即可访问私有字段!
请参阅下面的示例代码,该代码取自我今天注意到的this article。 (感谢Mr.DEKO一如既往!)
此骇客最初于2019年8月在QualityPortal上报道,如上述那位伯爵所描述。 (需要登录)
重写之前(使用"asm" method)
function TPropertyEditorHelper.GetPropList: PInstPropList;
{$IF CompilerVersion < 31.0}
begin
Result := Self.FPropList;
end;
{$ELSE}
// http://d.hatena.ne.jp/tales/20160420/1461081751
asm
MOV EAX, Self.FPropList;
end;
{$IFEND}
使用“ with”重写
function TPropertyEditorHelper.GetPropList: PInstPropList;
begin
with Self do
Result := FPropList;
end;
我很惊讶它是如此简单:-)