doumen5087 2015-03-09 21:58
浏览 61
已采纳

IF语句下面的代码永远不会执行

There's a section of my code that has unexpected behaviour.

. . .
fmt.Println("Error:", err)
if err == nil {
    return err
}
fmt.Println("Done category")
. . .

The section above has the following output

Error: <nil>

The code below if statement is never executed. If I remove the if statement the code behaves as expected.

Reference: https://github.com/skarllot/flogviewer/blob/master/wlog/parser.go#L138

  • 写回答

1条回答 默认 最新

  • dongqiuxu2270 2015-03-09 22:00
    关注

    Let's step through it.

    fmt.Println("Error:", err)
    

    If the output is Error: <nil> .. then your err variable is nil.

    if err == nil {
        return err
    }
    

    This is saying .. "if the err variable is nil (which it is .. we established that above) ... then return the nil value.

    At this point .. your function has returned.. so nothing else below it will run.

    Perhaps you meant this line instead?:

    if err != nil {
    //     ^^ NOT equal?
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度