vote up 6 vote down star

I've heard many programmers, particularly Delphi programmers scorn the use of 'with'.
I thought it made programs run faster (only one reference to parent object) and that it was easier to read the code if used sensibly (less than a dozen lines of code and no nesting).

Here's an example:

procedure TBitmap32.FillRectS(const ARect: TRect; Value: TColor32);
begin
  with ARect do FillRectS(Left, Top, Right, Bottom, Value);
end;

I like using 'with'. What's wrong with me?

flag
Perhaps the following title would be better: What’s wrong with Delphi's “with” – Lars Truijens Sep 16 '08 at 11:50

12 Answers

vote up 1 vote down

I do not like it because it makes debbuging a hassle. You cannot read the value of a variable or the like by just hovering over it with a mouse.

link|flag
That sounds like a problem with the debugger, not a problem with the language feature. – Greg Hewgill Sep 16 '08 at 11:40
vote up 0 vote down

This debate happens in Javascipt a lot too.

Basically, that With syntax makes it very hard to tell at a glance which Left/Top/etc property/method you're calling on.You could have a local variable called Left, and a property (it's been a while since I've done delphi, sorry if the name is wrong) called Left, perhaps even a function called Left. Anyone reading the code who isn't super familiar with the ARect structure could be very very lost.

link|flag
vote up 0 vote down

There's nothing wrong with it as long as you keep it simple and avoid ambiguities.

As far as I'm aware, it doesn't speed anything up though - it's purely syntactic sugar.

link|flag
It can speed things up if there are multiple levels of indirection involved. Consider the following: with aControl.parent.parent.parent do ...followed by multiple operations. The with statement only evaluates the triple-indirection once and uses that reference multiple times. – Mason Wheeler Nov 2 '08 at 18:04
How do you know the compiler doesn't do that without the with? I did some basic benchmarking a while ago, and couldn't find any difference at all. – Blorgbeard Nov 3 '08 at 2:30
vote up 5 vote down

I prefer the VB syntax in this case because here, you need to prefix the members inside the with block with a . to avoid ambiguities:

With obj
    .Left = 10
    .Submit()
End With

But really, there's nothing wrong with with in general.

link|flag
Agreed. This is basically the only thing I like better in VB over Delphi. – Mason Wheeler Nov 2 '08 at 18:00
That wouldn't work with nested "with". (Whether you like those or not.) – Ulrich Gerhardt Feb 5 at 8:37
vote up 10 vote down

One annoyance with using with is that the debugger can't handle it. So it makes debugging more difficult.

A bigger problem is that it is less easy to read the code. Especially if the with statement is a bit longer.

procedure TMyForm.ButtonClick(...)
begin
  with OtherForm do begin
    Left := 10;
    Top := 20;
    CallThisFunction;
  end;
end;

Which Form's CallThisFunction will be called? Self (TMyForm) or OtherForm? You can't know without checking if OtherForm has a CallThisFunction method.

And the biggest problem is that you can make bugs easy without even knowing it. What if both TMyForm and OtherForm have a CallThisFunction, but it's private. You might expect/want the OtherForm.CallThisFunction to be called, but it really is not. The compiler would have warned you if you didn't use the with, but now it doesn't.

Using multiple objects in the with multiplies the problems. See http://blog.marcocantu.com/blog/with_harmful.html

link|flag
vote up 0 vote down

It permits incompetent or evil programmers to write unreadble code. Therefor, only use this feature if you are neither incompetent nor evil.

link|flag
And if you can guarantee that your code will never be read or edited by a programmer less competant than yourself. – Richard A Nov 4 '08 at 2:15
vote up 1 vote down

What you save in typing, you lose in readability. Many debuggers won't have a clue what you're referring to either so debugging is more difficult. It doesn't make programs run faster.

Consider making the code within your with statement a method of the object that you're refering to.

link|flag
vote up 0 vote down

At work we give points for removing Withs from an existing Win 32 code base because of the extra effort needed to maintain code that uses them. I have found several bugs in a previous job where a local variable called BusinessComponent was masked by being within a With begin block for an object that a published property BusinessComponent of the same type. The compiler chose to use the published property and the code that meant to use the local variable crashed.

I have seen code like

With a,b,c,d do {except they are much longer names, just shortened here) begin i := xyz;
end;

It can be a real pain trying to locate where xyz comes from. If it was c, I'd much sooner write it as

i := c.xyz;

You think it's pretty trivial to understand this but not in a function that was 800 lines long that used a with right at the start!

link|flag
vote up 3 vote down

It is not likely that "with" would make the code run faster, it is more likely that the compiler would compile it to the same executable code.

The main reason people don't like "with" is that it can introduce confusion about namespace scope and precedence.

There are cases when this is a real issue, and cases when this is a non-issue (non-issue cases would be as described in the question as "used sensibly").

Because of the possible confusion, some developers choose to refrain from using "with" completely, even in cases where there may not be such confusion. This may seem dogmatic, however it can be argued that as code changes and grows, the use of "with" may remain even after code has been modified to an extent that would make the "with" confusing, and thus it is best not to introduce its use in the first place.

link|flag
I once did some very limited testing on using with when optimising some often called code. It made no improvement to run time. If this was an issue, say for an array lookup, then a temporary variable is the solution. The compiler is just so smart, that it's usually best to leave it alone. – Richard A Nov 4 '08 at 2:14
vote up 0 vote down

We've recently banned it in our Delphi coding stnadards.

The pros were frequently outweighing the cons.

That is bugs were being introduced because of its misuse. These didn't justify the savings in time to write or execute the code.

Yes, using with can led to (mildly) faster code execution.

In the following, foo is only evaluated once:

with foo do
begin
  bar := 1;
  bin := x;
  box := 'abc';
end

But, here it is evaluated three times:

foo.bar := 1;
foo.bin := x;
foo.box := 'abc';
link|flag
Are you sure about that? I would be very surprised if the compiler wasn't smart enough to optimize the second case into the first case. – Blorgbeard Oct 19 '08 at 19:54
Quite sure. Delphi is the primary env. at my day job and I'm intimately familiar with it. Pascal's nature makes optimization easy due to pervasive static typing but the optimizations the compiler performs are by now technologically a few generations behind. This compiler is not as smart as we are. – Mihai Limbasan Oct 19 '08 at 20:23
If you store foo in a local variable, then you'll be getting the equivalent level of performance as "with". – Barry Kelly Oct 19 '08 at 20:27
That's perfectly true. The performance hit is there when accessing function-type properties (function call, non-inlined pre-Delphi10) and instance variables (vtable lookup.) If you use a local and take care to place the accesses one after the other, it's as fast as the with clause. – Mihai Limbasan Oct 20 '08 at 11:17
If Foo is a function, or a property called by a GetFoo method, the compiler MUST execute the function each time, as it may have other side effects (generally bad design, but it does happen). – Gerry Nov 23 '08 at 20:43
vote up 0 vote down
... run faster ...

Not necessarily - your compiler/interpreter is generally better at optimizing code than you are.

I think it makes me say "yuck!" because it's lazy - when I'm reading code (particularly someone else's) I like to see explicit code. So I'd even write "this.field" instead of "field" in Java.

link|flag
vote up -7 vote down

In Delphi, there is no other way of declaring a local variable. Therefore, even the manuals recommend code like this:

WITH MyObject.Create DO BEGIN

My old Delphi manuals (D5 - maybe even D7 pdf's?) clearly state that, using WITH dereferencing makes code faster. I have it on good authority that this wasn't true anymore even in D5's time. The compiler optimizes dereferencing.

Used correctly (assuming CodeGear would finally fix it) it has the potential to make debugging much easier:

By adopting a generic naming convention, you can keep variables like Index, Count, Offset etc. in your watch window and they would display the correct value whenever you enter a WITH block.

As things are now, I need to (MANUALLY!!!) fully dereference every variable I want to watch! Instead of being a potential help, this is a royal pain in the butt.

The old DOS debuggers issued an error message stating the cannot display this variable, or words to that effect. Delphi instead goes to the root, finds a variable of the same name and displays that value. VERY, VERY WRONG!

This is the very minimum that urgently needs to be fixed in Delphi.

link|flag
There is, of course, a way to declare a local variable in Delphi. – gabr Nov 2 '08 at 16:46
What in the WORLD are you talking about?!? Local variables are declared in the var section above the code block. – Mason Wheeler Nov 2 '08 at 18:08
-1 as nearly everything in this reply is wrong, in just about every way possible. – Cruachan Nov 24 '08 at 11:24
I think he meant declaring a local variable inside the begin...end block without going to var block. – idursun Apr 28 at 6:19

Your Answer

Get an OpenID
or

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