2018年7月18日

怎么给slice加一个Insert方法呢?而不用丑陋的两次append….

摘要: package main import ( "fmt" "reflect" ) func Insert(slice interface{}, pos int, value interface{}) interface{} { v := reflect.ValueOf(slice) ne := reflect.MakeSlice(reflect.SliceOf(reflect.Ty... 阅读全文

posted @ 2018-07-18 16:42 荣耀王者 阅读(659) 评论(0) 推荐(0) 编辑

导航