Marcos Douglas escreveu:

Well... just to I will know. A long time ago (Delphi 4) I learned:
Always use 'const' for 'strings' because this is faster. Strings will
be passed by reference. This remains true?

eg:

var str: string;

procedure Foo1(const s: string);
procedure Foo2(s: string);

Take a look at http://lazarusroad.blogspot.com/2008/11/effect-of-using-constant-parameter-for.html

Luiz
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to