我具有以下功能:
func (c *Class)A()[4]byte
func B(x []byte)
我想打电话
B(c.A()[:])
但是我得到这个错误:
cannot take the address of c.(*Class).A()
如何正确获取Go中函数返回的数组切片?
狐的传说
智慧大石
相关分类