J
jiangzs
Unregistered / Unconfirmed
GUEST, unregistred user!
function GetStrAllocSize(const S: string): Longint;var P: ^Longint; //longInt 指针变量begin P := Pointer(S); dec(P, 3); Result := P^ and not $80000000 shr 1; end;一个 func的功能,请大家 解析一下 begin end 之间语句的功能。有点看不懂。