当我阅读时:http: //golang.org/doc/effective_go.html#errors
我找到了这样的行:err.(*os.PathError)
在这种情况下:
for try := 0; try < 2; try++ {
file, err = os.Create(filename)
if err == nil {
return
}
if e, ok := err.(*os.PathError); ok && e.Err == syscall.ENOSPC {
deleteTempFiles() // Recover some space.
continue
}
return }
err.(*os.PathError)
Go 中到底是什么?