Graeme Geldenhuys schrieb:
> 2009/9/29 Florian Klaempfl <flor...@freepascal.org>:
>> Because it doesn't copy your ram modules ;)
> 
> Well, if I move something (no matter what it is), it doesn't exist in
> the original location any more. Hence my confusion about the Move()
> procedure.

Indeed, the serious answer is:
move handles overlapping memory blocks correctly (so the data might not
existing anymore at the old location), memcpy doesn't do this and screws
things up when handling overlapping blocks. This is why e.g. C++ has
memmove as well which is more expensive than memcpy due to overlap checks.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to