Baham's Blog

Above all else, guard your heart.

Go语言-两种返回方式

Go的函数中,可以存在多个返回值,但是多个返回值务必使用( )

func TempFile(dir, prefix string) (f *os.File, err error)

函数声明时,也可以不声明返回变量

func TempFile(dir, prefix string) (*os.File, error)

参见《Go语言云动力》93页返回语句。




The Original Link: http://baham.github.io/12_03_goyu-yan-liang-chong-fan-hui-fang-shi.html
If you want to reprint it, please do under the CC BY-NC-SA 4.0

Comments