Golang 实现 array_push

func ArrayPush(s *[]interface{}, elements ...interface{}) int {
    *s = append(*s, elements...)
    return len(*s)
}
原文地址:https://www.cnblogs.com/arvin-an/p/14658156.html