Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Bug in VFP9?
Message
 
 
To
29/03/2019 08:51:31
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
01667575
Message ID:
01667703
Views:
59
>>Hi,
>>
>>I have related question. I think I recall that calling someFunction(@tcLongString) is quicker than someFunction(tcString) if we don't make any changes with tcString inside the function.
>
>Regardless of whether it's marginally faster or not, it's a bad idea. Functions should not have side effects. They should do their calculations and return a value. Calling a function with a parameter by reference is asking for a side effect. It's also setting you up for trouble down the road when something inside the function changes and suddenly tcLongStrong gets changed.
>
>Tamar

Hi Tamar,

The strings can be really long (although normally they aren't). I'm sending that string into Parse method which parses it and returns requested tag. This is called many times in our classes and since I know the behavior of that particular method, I think I'm safe here and passing them my reference may be actually a benefit in terms of speed.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform