Guid Uniqueness On different machine(Guid 在不同机器上的唯一性)
问题描述
可能重复:
GUID 100% 的时间是否唯一? p>
在阅读了关于 Guid 的所有帖子后,我仍然不清楚一件简单的事情:
After reading all posts on Guid, still I am unclear about one simple thing:
不同机器生成的Guids也保持其唯一性.
Guids generated by different machines also maintain their Uniqueness or not.
我已经阅读了关于单机上的 guid 唯一性,但我仍然不知道不同机器上的唯一性
I have read about guid uniqueness on single machine,but I still don't know about uniqueness with different machines
推荐答案
GUID实际上"普遍独一无二.
GUID are "practically" universally unique.
GUID 是一个 128 位整数(16 个字节),可在需要唯一标识符的所有计算机和网络中使用.这样的标识符被复制的概率非常低.
A GUID is a 128-bit integer (16 bytes) that can be used across all computers and networks wherever a unique identifier is required. Such an identifier has a very low probability of being duplicated.
来自 MSDN
这篇关于Guid 在不同机器上的唯一性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Guid 在不同机器上的唯一性
基础教程推荐
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
