本文简要介绍ruby语言中 Random::Formatter.uuid
的用法。
用法
uuid()
Random::Formatter#uuid
生成一个随机的 v4 UUID(通用唯一标识符)。
require 'random/formatter'
prng.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
prng.uuid #=> "bad85eb9-0713-4da7-8d36-07a8e4b00eab"
prng.uuid #=> "62936e70-1815-439b-bf89-8492855a7e6b"
版本 4 UUID 是纯随机的(版本除外)。它不包含有意义的信息,例如 MAC 地址、时间戳等。
结果包含 122 个随机位(15.25 个随机字节)。
有关 UUID 的详细信息,请参阅 RFC 4122。
相关用法
- Ruby Formatter.urlsafe_base64用法及代码示例
- Ruby Formatter.random_bytes用法及代码示例
- Ruby Formatter.base64用法及代码示例
- Ruby Formatter.hex用法及代码示例
- Ruby Formatter.alphanumeric用法及代码示例
- Ruby Formatter.choose用法及代码示例
- Ruby Formatter模块用法及代码示例
- Ruby Float arg()用法及代码示例
- Ruby File.identical?用法及代码示例
- Ruby Fiber.schedule用法及代码示例
- Ruby Float fdiv()用法及代码示例
- Ruby Float quo()用法及代码示例
- Ruby Float angle()用法及代码示例
- Ruby FileUtils.mkdir用法及代码示例
- Ruby Float divmod()用法及代码示例
- Ruby Float.self - other用法及代码示例
- Ruby Float.rationalize用法及代码示例
- Ruby Float.truncate用法及代码示例
- Ruby FileUtils.compare_file用法及代码示例
- Ruby FileUtils.options_of用法及代码示例
- Ruby File.dirname用法及代码示例
- Ruby Float prev_float()用法及代码示例
- Ruby FileUtils.ln_s用法及代码示例
- Ruby Float round()用法及代码示例
- Ruby Float denominator()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Formatter.uuid。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。