请教delphi中怎样将两个integer合成一个int64?
也就是其中一个integer放在高位,一个integer放在低位我最开始的写法是
i1,i2:integer
i3:int64i3 :=i2 shl 32;
i3 :=i3+i1;
但是执行结果不对。请问怎样解决?