Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Solved]Does function exists?
#12
Speed and memory depends on how arguments are declared. If by value (TYPE'x), x is copied. If x is string or array, whole string/array data is copied. It is slower. If by reference (TYPE&x), only address of the caller's variable is passed. It is fast. But speed and memory is important only if the function will be called frequently or arguments will be large.


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)