Delphi UUID生成器

前端之家收集整理的这篇文章主要介绍了Delphi UUID生成器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Delphi有什么内置的生成UUIDs?

解决方法

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

猜你在找的Delphi相关文章