golang 对象转换

前端之家收集整理的这篇文章主要介绍了golang 对象转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

#golang struct转数组

//转换数组类型 func coventArray(value interface{}) []interface{} {size := reflect.ValueOf(value).Len()list := make([]interface{},size)slice := reflect.ValueOf(value).Slice(0,size)for index := 0; index < size; index++ {list[index] = slice.Index(index).Interface()}return list }

原文链接:https://www.f2er.com/go/187492.html

猜你在找的Go相关文章