Originally Posted by TrainingOracle
Would using, for example, "shortint", instead of "integer" improve the performance of the application? Maybe by reducing data in the cpu buffer?
Thanks
No.
If the number of times you call the routine (probably in the millions)
is enough that a difference was actually detectable "integer" would be faster as it is the native size for the hardware.
Look up Integer in Delphi help for more information.
Clive
Thanks |