我有一个type myByte byte我使用的,因为我想在逻辑上区分不同类型的字节。
我可以轻松转换byte(myByte(1)),
但我找不到投射或转换切片:[]byte([]myByte{1})失败。
这样的事情可能吗?内存中的位是相同的(对吧?)所以应该有某种方式,而不是逐字节复制到一个新对象中。
例如,这些都不起作用:http : //play.golang.org/p/WPhD3KufR8
package main
type myByte byte
func main() {
a := []myByte{1}
fmt.Print(byte(myByte(1))) // Works OK
fmt.Print([]byte([]myByte{1})) // Fails: cannot convert []myByte literal (type []myByte) to type []byte
// cannot use a (type []myByte) as type []byte in function argument
// fmt.Print(bytes.Equal(a, b))
// cannot convert a (type []myByte) to type []byte
// []byte(a)
// panic: interface conversion: interface is []main.myByte, not []uint8
// abyte := (interface{}(a)).([]byte)
}
蝴蝶不菲
互换的青春
相关分类