Example of UUID generation using Boost in C++(在 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.
推荐答案
一个基本的例子:
#include <boost/uuid/uuid.hpp> // uuid class
#include <boost/uuid/uuid_generators.hpp> // generators
#include <boost/uuid/uuid_io.hpp> // streaming operators etc.
int main() {
boost::uuids::uuid uuid = boost::uuids::random_generator()();
std::cout << uuid << std::endl;
}
示例输出:
7feb24af-fc38-44de-bc38-04defc3804de
7feb24af-fc38-44de-bc38-04defc3804de
这篇关于在 C++ 中使用 Boost 生成 UUID 的示例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中使用 Boost 生成 UUID 的示例
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01