doubingjian2006 2016-02-01 20:27
浏览 327
已采纳

如何从uuid中获得2个长数字?

I'm using this library to generate a v4 uuid:

https://github.com/satori/go.uuid

What is the most efficient way to get 2 long ints from the generated uuid?

  • 写回答

2条回答 默认 最新

  • douyi1982 2016-02-01 20:36
    关注

    You can use the Bytes() function to get the bytes and then convert to a long with encoding/binary. As @icza mentioned, you can also slice the UUID object directly, so you don't even need to call Bytes().

    package main
    
    import "fmt"
    import "encoding/binary"
    import "github.com/satori/go.uuid"
    
    func main() {
        u1 := uuid.NewV4()
        fmt.Printf("UUIDv4: %s
    ", u1)
    
        l1 := binary.BigEndian.Uint64(u1[:8])
        l2 := binary.BigEndian.Uint64(u1[8:])
    
        fmt.Printf("%x %x
    ", l1, l2)
        fmt.Printf("%v %v
    ", l1, l2)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 有偿请人帮写个安卓系统下禁止装软件及禁止拷入文件的程序
  • ¥100 用 H.265 对音视频硬编码 (CUDA)
  • ¥20 mpich安装完成后出问题
  • ¥15 multisim仿真
  • ¥15 stm32循迹小车代码问题
  • ¥15 输入一堆单词,使其去重输出
  • ¥15 qc代码,修改和添加东西
  • ¥50 Unity的粒子系统使用shadergraph(内置管线)制作的一个顶点偏移shader,但是粒子模型移动时,顶点也会偏移
  • ¥15 如何用python处理excel的数据(极值标准化)
  • ¥15 三向应力状态求剪应力