最近在读写文件操作,查看godoc发现
func (*File) Read
func (f *File) Read(b []byte) (n int, err error)
Read reads up to len(b) bytes from the File. It returns the number of bytes read and any error encountered. At end of file, Read returns 0, io.EOF.
说明比较简单,我如何才能知道他这个函数总共返回几种error?
同理,我如何查询其他的函数返回的error总数和种类?