前端之家收集整理的这篇文章主要介绍了
Delphi UUID生成器,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
program Guid;
{$APPTYPE CONSOLE}
uses
SysUtils;
var
Uid: TGuid;
Result: HResult;
begin
Result := CreateGuid(Uid);
if Result = S_OK then
WriteLn(GuidToString(Uid));
end.
下面的CreateGuid()调用Windows API函数CoCreateGuid()。
原文链接:https://www.f2er.com/delphi/103600.html