type mod struct { src string dst string}func(m *mod)New(){ m.src = "a" m.dst = "b"}var( v = map[string]interface{} { "file":mod{}, "time":mod{}, })v["file"].New()我收到一个错误:无效的限定类型,需要 packagename.identifier,找到:v["file"].New <*ast.SelectorExpr>**有没有办法直接调用会员的方法**
- 2 回答
- 0 关注
- 109 浏览
添加回答
举报
0/150
提交
取消