V
vinlin
Unregistered / Unconfirmed
GUEST, unregistred user!
vinlin(30078256) 00:16:37
type
IntProc =proceduce (n:integer);
...
procedure TForm1.RadioButton2Click(Sender: TObject);
IP:IntProc;
begin
IP := TripleTheValue;
ShowMessage(format('''%p''',[@IP]));
end;
想问一下,每次RUN,显示@P都是等于:“00452C4C”
是否说明系统每次为某个过程分配内存时都会保持不变呢?
那位FW解析一下。
type
IntProc =proceduce (n:integer);
...
procedure TForm1.RadioButton2Click(Sender: TObject);
IP:IntProc;
begin
IP := TripleTheValue;
ShowMessage(format('''%p''',[@IP]));
end;
想问一下,每次RUN,显示@P都是等于:“00452C4C”
是否说明系统每次为某个过程分配内存时都会保持不变呢?
那位FW解析一下。