16,747
社区成员




var
Ini : TiniFile;
U64 : UInt64;
begin
U64 := $FFFFFFFFFFFFFFFF;
Ini := TIniFile.Create('E:\dd.ini');
Ini.WriteString('Root' , 'Key' , IntToHex(U64 , 8));
U64 := StrToInt64Def('$' + Ini.ReadString('Root' , 'Key' , ''),0);
Ini.Free;
if U64=$FFFFFFFFFFFFFFFF then
ShowMessage('ok');
end;
18446744073709551615=$FFFFFFFFFFFFFFFF刚好64位