我正在尝试按照以下方式做一些事情:package main import ( "fmt" ) type StringWrap stringfunc main() { s := []string{"a","b","c"} sw := []StringWrap(s) //ERROR: cannot convert s (type []string) to type []StringWrap fmt.Println(sw)}难道我做错了什么?或者这只是 go 的一个限制?
1 回答
- 1 回答
- 0 关注
- 234 浏览
添加回答
举报
0/150
提交
取消