Guid 在不同机器上的唯一性

Guid Uniqueness On different machine(Guid 在不同机器上的唯一性)
本文介绍了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 在不同机器上的唯一性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)