初级会员
  • 第 60950 位会员
  • abuuloou
  • 2021-03-17 12:53:20
  • Offline
  • 19 95

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • ```go package main import "fmt" func DeleteElementInSlice(s []interface{},index int) []interface{}{ return append(s[:index],s[index+1:]...) } func DeleteOption(oldS []interface{},oldstr interface{})[]interface{}{ var idx int for i,v:=range oldS{ if v==oldstr{ idx=i break } } s1:=DeleteElementInSlice(oldS,idx) return s1 } func main(){ slice:=[]interface{}{"tom","hello","ok","love"} var str interface{}="hello" fmt.Println(DeleteOption(slice,str)) } ```