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条)

报告相同问题?

悬赏问题

  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题
  • ¥20 修改中兴光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据