doumeinuoye81969 2019-04-02 09:12
浏览 729
已采纳

是否所有Golang函数都将err作为第二个返回值返回

I am new a Golang programmer and I see code snippets were functions return err as last argument a lot of time.

f, err := strconv.ParseFloat(asciiFloat, 64)

Question is must all functions be made to return err even if no error handling is involved in the function implementation. And how will I know a function is or is not returning an err value?

Must I checkout docs every time I need to use a function?

  • 写回答

2条回答 默认 最新

  • dongliyi967823 2019-04-02 10:32
    关注

    Answering your question: Fortunately, Go prevents certain types of programmers errors. It just won't let you compile the program if you forget one of the values that the function returns.

    It's a good practice to return errors in Go, read Errors section of Effective Go

    Library routines must often return some sort of error indication to the caller. As mentioned earlier, Go's multivalue return makes it easy to return a detailed error description alongside the normal return value. It is good style to use this feature to provide detailed error information.

    and Error handling and Go

    In Go, error handling is important. The language's design and conventions encourage you to explicitly check for errors where they occur

    However there is a problem described here and probably will be improved in Go 2

    In general Go programs have too much code checking errors and not enough code handling them.

    Dave Cheney writes in the blog

    I’m suggesting changing your code so you don’t have as many errors to handle.

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

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办