vote up 8 vote down star
3

Now I know marking string parameters as const can make a huge performance difference, but what about ordinal types? Do I gain anything by making them const?

I've always used const parameters when handling strings, but never for Integer, Pointer, class instances, etc.

When I tried to change that, I noticed that in many cases I had to create additional temporary variables, which replace the now write-protected parameters.

flag

4 Answers

vote up 19 vote down check

You need to understand the reason, to avoid "cargo-cult programming." Marking strings as const makes a performance difference because you no longer need to copy the string to the new routine. If it knows you aren't going to change it, it can copy a pointer to the string, like it would for a var parameter, which is only 4 bytes instead of however long the string is. This is safe to do since the compiler enforces the "this variable will not be changed" constraint.

For ordinals, which are usually 4 bytes or less, there's no performance gain to be had. Using const as optimization only works when you're using value types that are larger than 4 bytes, such as strings, arrays or records. And if you plan to modify the string in a temporary variable then it'll have to be copied anyway inside the function body, so you're not actually saving anything. You'd have an easier time just passing it without the const in that particular case, which causes it to send a copy of the string that's safe to modify because it won't be copied back.

link|flag
+1 certainly a more satisfying explanation than my own one – Smasher Oct 21 at 14:25
6  
Your first paragraph is wrong regarding strings. Strings are always passed as their four-byte pointer representation. Const suppresses the code in the function's prologue and epilogue that updates the string's reference count. The same goes for interface parameters and dynamic arrays. Likewise, records are passed as pointers. Const merely suppresses the prologue code that copies the record onto the function's local stack. In other words, const has no effect on the caller side of a function. It only affects the receiver of the call. – Rob Kennedy Oct 21 at 16:45
2  
@Rob: Bummer that comments cannot be edited. It's easy to misread your comment as if you're saying that records are always passed as pointers. – Wouter van Nifterick Oct 21 at 18:49
If that's what you think I said, then you did not misread anything, Wouter. Records that are larger than a pointer are always passed as pointers. The caller places a pointer on the stack. If the parameter is not const, then the receiver of the call makes a copy of the record. It's the same as with strings. The caller passes a pointer, and the receiver makes a copy. In the case of strings, making a copy is simply updating the reference count, though. – Rob Kennedy Oct 27 at 17:21
vote up 10 vote down

You can't accidentally treat them like var parameters and have your code compile. So it makes your intentions clear.

link|flag
2  
Good point, but isn't it enough to NOT specify a parameter var to make one's intention clear? – Smasher Oct 21 at 14:31
2  
Smasher, the compiler doesn't distinguish between var and the default convention insofar as what you are allowed to do with the argument in the method. – Craig Stuntz Oct 21 at 15:00
1  
Even if it seems clear at the moment that this is a value you don't intend to change, it might not six months later when you come back to it, or when a maintenance programmer has to look at your code. – Mason Wheeler Oct 21 at 15:11
Mason, that's exactly my point. To get the maintainer's mind into the same mindset as the creator's mind. The maintainer can change the convention if need be, but she should understand the intention of the creator. – Craig Stuntz Oct 21 at 15:26
Yeah. I should have probably put an @Smasher in front of that last comment. :p – Mason Wheeler Oct 21 at 15:30
vote up 6 vote down

Declaring ordinal types const makes no difference because they are copied anyway (call-by-value), so any changes to the variable do not affect the original variable.

procedure Foo (Val : Integer)
begin
Val := 2;
end;
...
SomeVar := 3;
Foo (SomeVar);
Assert (SomeVar = 3);

IMHO declaring ordinal types const makes no sense and as you say requires you to introduce local variables often.

link|flag
call-by-value, that's the term I was looking for in my question :) – DR Oct 21 at 14:14
2  
Craig has a valid point. There is a good reason to declare an ordinal as const; just not for performance reasons. – Mason Wheeler Oct 21 at 14:32
vote up 1 vote down

It depends on how complex is your routine and how it is used. If it is used many places and required that the value stay the same, declare it as "const" to make it cleared and safe. For string type, there was a bug (for Delphi 7 as I stump on it) that causes memory corruption if declare as "const". Below is sample codes

type
  TFoo = class 
  private
     FStr: string;
  public
     procedure DoFoo(const AStr: string);
     begin
        FStr := AStr; //the trouble code 1
        ......
     end;
     procedure DoFoo2;
     begin
        .....
        DoFoo(FStr);  //the trouble code 2
     end;
  end;
link|flag

Your Answer

Get an OpenID
or

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