2
我想傳遞一個字符串數組到方法。雖然經過斷言,我得到這個錯誤不能使用臨時(類型接口{})作爲類型[]字符串參數equalStringArray:需要類型斷言
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
謝謝,就是這樣:) – Fallen 2014-12-02 08:22:23