Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.034 Beiträge
Delphi 12 Athens
|
Re: Inhalt des Speichers auslesen...
31. Mai 2006, 14:01
Zitat von Luckie:
Joo
entweder
Delphi-Quellcode:
Type P: PInt64;
IntToHex(P^, 8);
oder
Delphi-Quellcode:
Type P: Pointer;
IntToHex(PInt64(P)^, 8);
Int64, weil Real = Double und Double = 8 Byte und ebenfalls Int64 = 8 Byte.
Garbage Collector ... Delphianer erzeugen keinen Müll, also brauchen sie auch keinen Müllsucher.
my Delphi wish list : BugReports/FeatureRequests
|