在 C++ 中使用 Boost 生成 UUID 的示例
我只想生成随机 UUID,因为程序中的实例拥有唯一标识符非常重要。我查看了 Boost UUID,但我不能设法生成 UUID,因为我不明白要使用哪个类和方法。
如果有人能给我任何如何实现这一目标的例子,我将不胜感激。
I want to generate just random UUID's, as it is just important for instances in my program to have unique identifiers. I looked into Boost UUID, but I can't manage to generate the UUID because I don't understand which class and method to use.
I would appreciate if someone could give me any example of how to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个基本示例:
示例输出:
A basic example:
Example output:
Georg Fritzsche 的答案是好的,但可能有点误导。如果您需要多个 uuid,则应该重复使用生成器。
也许这样更清楚:
The answer of Georg Fritzsche is ok but maybe a bit misleading. You should reuse the generator if you need more than one uuid.
Maybe it's clearer this way: