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;
link|improve this question

73% accept rate
4  
The fact that you have to ask this question shows why you shouldn't use with in the first place. It can cause scoping confusion and sometimes lead to hard-to-track-down errors. – Mason Wheeler May 16 '11 at 22:32
2  
@Mason: 'You' as in 'the OP' or as in 'one'? To me it is obvious that the code above tests Object2.Ready. I think you get an intuition for the with statement 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:36
1  
It's not my code, I saw in in someone else's code. And was surprised it even compiled. I never use with personally. If I must I use a temporary var to store the stuff into e.g. tempvar:= 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:38
2  
@Andreas: "You" as in "one". It can even bite you when the code you write is correct. For example, if you're in a with block and you reference a symbol from outside the with object's scope, that can break if you update the library the with object 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.) with worked a lot better back before OOP was introduced to Pascal than it does now. – Mason Wheeler May 16 '11 at 22:44
@All (mostly Andreas) Thanks for clearing this one up, didn't mean to start a religious war. – Johan May 16 '11 at 23:17
show 2 more comments
feedback

1 Answer

up vote 13 down vote accepted

The last one.

with Object1, Object2 do

is equivalent to

with Object1 do
  with Object2 do

and so Object2 will be the number-one priority.

The official documentation on this matter.

link|improve this answer
5  
@David: I use with a lot, and -- believe it or not -- have never seen a bug caused by it... – Andreas Rejbrand May 16 '11 at 22:32
4  
@Johan: That was a joke, right? :) If not, I have to ask you the types of file and connection... Also, there are places where with is very convenient, and places where it is not... – Andreas Rejbrand May 16 '11 at 22:47
2  
I have shot myself in the foot with WITH, several times. Ha. With With. – Warren P May 16 '11 at 22:52
3  
Names are resolved in nested or compound "with" statements the same as they're resolved from multiple used units. The most recently mentioned unit or object is searched first. – Rob Kennedy May 16 '11 at 23:04
3  
Debugging (in Delphi 7) is a little annoying inside a with block, so I told my team to get rid of them as they're encountered in our codebase. I think it's useful for the original programmer to save some keystrokes, but mostly a pain for subsequent developers on the same codebase. If the debugger could keep up, I wouldn't mind so much. Not sure if there are any fixes (or later versions of Delphi) that fix the debugging behaviour inside a with block. – Sam May 16 '11 at 23:29
show 19 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.