初级会员
  • 第 73772 位会员
  • Nothing_
  • 2022-05-17 11:30:48
  • Offline
  • 20 15

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了主题 switch v := v.(type) 求解
    #3 @DonWang 是个带类型的interface{} ,nil !=nil
  • 评论了主题 switch v := v.(type) 求解
    case 后面跟多个类型时,只要其中一个类型匹配, 会直接将v赋值给k,类似执行k:=v ```go switch k := v.(type) { case *int, *string: fmt.Println("*int or *string", k == nil) case int: fmt.Println("int", k) } ```