Last updated 2 years ago
Was this helpful?
defer 关键字(参看 )对于在函数结束时关闭打开的文件非常有用,例如下面的代码片段:
defer
func data(name string) string { f, _ := os.OpenFile(name, os.O_RDONLY, 0) defer f.Close() // idiomatic Go code! contents, _ := ioutil.ReadAll(f) return string(contents) }
在函数 return 后执行了 f.Close()
return
f.Close()
上一节:
下一节: