将[]byte转换成负整数

FreeWong · · 1033 次点击
<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 ( &#34;fmt&#34; &#34;unsafe&#34; ) func main() { s := []byte{0xd6} var b8 int8 b8 = *((*int8)(unsafe.Pointer(&amp;s[0]))) fmt.Println(b8) } ```
#1
s := []byte{0xd6} fmt.Println(int8(s[0]))
#2