gpt4 book ai didi

GO - binary.PutUvarint 当数值大于 127 时加 1

转载 作者:数据小太阳 更新时间:2023-10-29 03:43:17 25 4
gpt4 key购买 nike

<分区>

一切尽在标题中。

GO 函数 binary.PutUvarint 当数值大于 127 时加 1。

我搜索了 stack overflowgithub 问题,但没有找到响应。

所以我发布这条消息是想知道是否有人可以提供帮助。

谢谢(抱歉我的英语不好)

b := make([]byte, binary.MaxVarintLen64)

binary.PutUvarint(b, 129)
fmt.Println(b)
// output
// [129 1 0 0 0 0 0 0 0 0]

binary.LittleEndian.PutUint64(b, 129)
fmt.Println(b)
// output
// [129 0 0 0 0 0 0 0 0 0]

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com