Random#uuid() : uuid() es un método de clase Random que comprueba la devolución de un UUID v4 aleatorio (Identificador único universal).
Sintaxis: Random.uuid()
Parámetro: valores aleatorios
Devuelve: un UUID v4 aleatorio (identificador único universal).
Ejemplo 1 :
# Ruby code for Random.uuid() method # loading library require 'securerandom' # declaring Random value date_a = SecureRandom.uuid # declaring Random value date_b = SecureRandom.uuid # uuid value puts "Random uuid form : #{date_a}\n\n" puts "Random uuid form : #{date_b}\n\n"
Producción :
Random uuid form : 219474f0-60c5-43b4-8e7f-f91b5c5e1f38 Random uuid form : d6800817-c27b-4651-8d98-dc12eec46706
Ejemplo #2:
# Ruby code for Random.uuid() method # loading library require 'securerandom' # declaring Random value date_a = SecureRandom.uuid # declaring Random value date_b = SecureRandom.uuid # uuid value puts "Random uuid form : #{date_a}\n\n" puts "Random uuid form : #{date_b}\n\n"
Producción :
Random uuid form : f74b43f6-8b9c-4cd1-aff2-177f517b77aa Random uuid form : baba4612-6931-46a0-aa8b-7a105fd2f194
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA