For example, we have DWORD = $ 12345678
Which of the instructions will be faster - absolute or Move ()?
var a:DWORD = $12345678;
b:Array[0..3] of byte absolute a;
var a:DWORD = $12345678;b:Array[0..3] of Byte
begin
Move(a,b,4);
end;
In particular, I ask what exactly the “absolute” does, because if it does not use additional memory to write this Array byte, then I have no reason to use Move instead of the absolute in this case, since the “absolute” works
source
share