T
tswhq
Unregistered / Unconfirmed
GUEST, unregistred user!
P :^Buffers;
l :TList;
...
New(P);
l.add(P);
...
P:=l.Items;
//由于p指向的内存有可能已经被其他进程释放掉了,这时怎样判断呢?
If P<>Nil then Dispose(P);
我这样用不行
l :TList;
...
New(P);
l.add(P);
...
P:=l.Items;
//由于p指向的内存有可能已经被其他进程释放掉了,这时怎样判断呢?
If P<>Nil then Dispose(P);
我这样用不行