golang cannot assign to
Posted 翔云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang cannot assign to相关的知识,希望对你有一定的参考价值。
问题:
# command-line-arguments
.\example.go:22: cannot assign to m.V.(BasicMessage).Length
想在函数中修改interface表示的结构体的成员变量的值,编译时遇到这个编译错误,问题代码如下:
package main
import (
"fmt"
)
type Message struct {
V interface{}
}
type BasicMessage struct {
Length int
}
func test(m *Message) {
m.V.(BasicMessage).Length = 1
}
func main() {
m := &Message{}
fmt.Println("m:", m)
test(m)
fmt.Println("m:", m)
}
原因:
interface不能使用这种赋值方式。
解决办法:
将test函数中赋值方式修改为:
func test(m *Message) {
bm := BasicMessage{}
bm.Length = 1
m.V = bm
}
output:
m: &{<\nil>}
m: &{{1}}
以上是关于golang cannot assign to的主要内容,如果未能解决你的问题,请参考以下文章
Vue的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<
kafka.common.KafkaException: Socket server failed to bind to hdp1:9092: Cannot assign requested addr
Xcode工程编译错误:“Cannot assign to 'self' outside of a method in the init family”
在 Electron 中,使用“typeof”会导致 TypeError: Cannot assign to read only property
mongodb启动错误(Failed to set up listener: SocketException: Cannot assign requested address)
Cannot assign to read only property 'exports' of object 解决办法