我是Go语言的新手(到目前为止已花费30分钟!),并且正在尝试执行文件I / O。
file, ok := os.Open("../../sample.txt")
if ok != nil {
// error handling code here
os.Exit(1)
}
...
当呼叫失败时,它不应该返回错误号吗?该调用返回os.Error,除了'String()'之外没有其他方法。
这是检查Go中错误的推荐方法吗?
慕侠2389804
相关分类