p:pbyte
i:integer;
p:=allocmem(100);
memo1.Lines.Add(Format('初始地址:%d',[integer(aa)]));//如是:15096472
i:=integer(aa)
inc(p,5)
memo1.Lines.Add(Format('inc地址:%d',[integer(aa)]));
p^=i ?????如何把地址值 15096472 给P,使指针前移,相当于dec(5)