s := []byte{0xd6}
请问在 golang 当中怎么将 0xd6 解读成 -42
在nodejs中有现成的函数
buf.readInt8([offset])
在golang中不知道怎么做,多谢多谢
<a href="/user/tablecell" title="@tablecell">@tablecell</a> · <a href="/user/Kisesy" title="@Kisesy">@Kisesy</a> <a href="/user/eirueirufu" title="@eirueirufu">@eirueirufu</a> 感谢感谢。。。。
#4
更多评论
```
package main
import (
"fmt"
"unsafe"
)
func main() {
s := []byte{0xd6}
var b8 int8
b8 = *((*int8)(unsafe.Pointer(&s[0])))
fmt.Println(b8)
}
```
#1