我正在尝试将字符串数组传递给方法。虽然它通过了断言,但我收到了这个错误cannot use temp (type interface {}) as type []string in argument to equalStringArray: need type assertion代码:if str, ok := temp.([]string); ok { if !equalStringArray(temp, someotherStringArray) { // do something } else { // do something else }}我也试过检查类型,reflect.TypeOf(temp)这也在打印[]string
1 回答
- 1 回答
- 0 关注
- 162 浏览
添加回答
举报
0/150
提交
取消