Which instance of Ready gets tested in the following code, and why?
interface
type
TObject1 = class
...
public
property Ready: boolean read FReady write FReady;
end;
TObject2 = class
...
public
property Ready: boolean read FReady write FReady;
end;
implementation
var
Object1: TObject1;
Object2: TObject2;
...
procedure test;
var
Ready: boolean;
begin
Ready:= true;
with Object1, Object2 do begin
if Ready then ShowMessage('which one?');
end; {with}
end;
Object2.Ready. I think you get an intuition for thewithstatement if you use it often. I use it often, and have never seen a bug caused by it... – Andreas Rejbrand May 16 '11 at 22:36tempvar:= Object1.Picture.Bitmap.Canvas; tempvar.Pixels[x,y]:= AColor;or whatever. The compiler just optimizes the tempvar away and I don't have to worry about these horrible scoping accidents. – Johan May 16 '11 at 22:38withblock and you reference a symbol from outside thewithobject's scope, that can break if you update the library thewithobject comes from and it now contains a member with the same name as that outer-scope symbol. (Not hypothetical; I've seen errors caused by this.)withworked a lot better back before OOP was introduced to Pascal than it does now. – Mason Wheeler May 16 '11 at 22:44