douzhu3367 2018-04-19 07:03
浏览 527
已采纳

如何处理switch case语句中返回的两个对象

I'm writing type assertion helper method which accepts an interface{} and returns string along with map[string]interface{}. I'm returning both objects within a case statement. Why is it asking for return at end of function? Am i missing a break?

func typeAssertionHelper(r interface{}) (string, map[string]interface{}) {
    switch g := r.(type) {
    case string:
        return g, nil
    case []interface{}:
        for _, v := range g {
            switch s := v.(type) {
            case string:
                return s, nil
            case map[string]interface{}:
                return "", s
            }
        }
    }
    // missing return end of function
}
  • 写回答

2条回答 默认 最新

  • douxin1956 2018-04-19 07:08
    关注

    The r interface{} that's being passed in does not necessarily match one of the cases that you have in the switch block.

    Essentailly the switch is not exhaustive.

    You could extend the switch with a default case:

    switch g := r.(type) {
     case string:
         ...
     case []interface{}:
         ...
     default:
         ...
    }
    

    Or just return something at the end of the function

    return "", nil

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 帮我利用jupyter 运行一个正确的代码
  • ¥15 如何使用Gephi软件和Python包中的GephiStreamer交互
  • ¥15 sqlite加密问题咨询
  • ¥15 appdesigner接收不到udp组播的数据
  • ¥15 verilog 非阻塞赋值下的移位拼接错误
  • ¥100 两个按钮控制一个LED
  • ¥15 用C语言写离散数学相关问题
  • ¥30 如何用python的GephiStreamer连接到gephi中,把Python和Gephi的具体操作过程都展示,重点回答Gephi软件的调试,以及如果代码的端口在浏览器中无法显示怎么处理
  • ¥15 ansys机翼建模肋参数
  • ¥15 Sumo软件无法运行
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部