摘要: 1) Append a slice b to an existing slice a: a = append(a, b...) 2) Copy a slice a to a new slice b: b = make([]T, len(a)) copy(b, a) 3) Delete item at 阅读全文
posted @ 2016-04-15 20:13 MokLiu 阅读(799) 评论(0) 推荐(0) 编辑