drlq92444 2015-07-16 12:41
浏览 33
已采纳

这个go switch语句有什么问题?

Can anybody see why this switch won't work?

func main() {

    reader := bufio.NewReader(os.Stdin)
    text, _ := reader.ReadString('
')

    fmt.Print(text)

    switch text {
    case "a":
        fmt.Print("A
")
    case "b":
        fmt.Print("B
")
    case "c":
        fmt.Print("C
")
    default:
        fmt.Print("DEFAULT
")
    }
}   

In this statement, the default value is always returned yet when hard coding the switch expression, the switch block works as it should. Looking at the ReadString() func code, it returns a string so I can't see any reason for my example to not work.

Am I doing something wrong?!

  • 写回答

3条回答 默认 最新

  • douhuocuo9012 2015-07-16 12:52
    关注

    Your text consists of two bytes: fmt.Print(len(text)) is 2 and fmt.Print(len("a")) is one.

    You the second symbol is invisible and you can try to remove it with text = strings.TrimSpace(text).

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

报告相同问题?

悬赏问题

  • ¥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】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部