About the author
One of the issues I've encountered recently is code like this:
type
ISomeIntf =
interface
procedure
SomeMethod;
end
;
TSomeClass =
class
(TInterfacedObject, ISomeIntf)
private
FValue:
Integer
FSomeValue:
string
public
constructor
Create;
var
SomeClass: TSomeClass;
DoSomething(ASomeIntf: ISomeIntf);
begin
ASomeIntf
.
Setup;
SomeClass := TSomeClass
InAnotherRoutine;
DoSomething(SomeClass);
DoAnotherThing;
SomeClass
// that references Self
{ TSomeClass }
TSomeClass
FValue :=
12345
FSomeValue :=
'Some important stuff'
WriteLn
(FValue);
(FSomeValue);
What happens when the call to DoSomething in AnotherRoutine finishes, and a call is made to DoAnotherThing, which calls SomeMethod? Copy and paste the above code into a new console program, and find out by running it!