在 Go 语言中, io包为 I/O 原语提供基本接口。它的主要工作是封装这种原语之王的持续实现。 Go 语言中的SectionReader.Read()函数用于返回NewSectionReader方法读取的字节数。此方法将缓冲区作为其参数。而且,这个函数是在io包下定义的。在这里,您需要导入“io”包才能使用这些功能。
句法:
func (s *SectionReader) Read(p []byte) (n int, err error)
在这里,“S”是一个指针,它是由NewSectionReader方法返回的SectionReader,和“p”被规定字节长度的缓冲器。
返回值:它返回从指定长度的指定缓冲区返回的内容的字节数,如果有也返回错误,但如果没有发生错误则返回“nil”。
下面的例子说明了上述方法的使用:
示例 1:
// Golang program to illustrate the usage of
// io.SectionReader.Read() function
// Including main package
package main
// Importing fmt, io, and strings
import (
"fmt"
"io"
"strings"
)
// Calling main
func main() {
// Defining reader using NewReader method
reader := strings.NewReader("Geeks\n")
// Calling NewSectionReader method with its parameters
r := io.NewSectionReader(reader, 2, 4)
// Defining buffer using make keyword
buf := make([]byte, 3)
// Calling Read method with its parameter
n, err := r.Read(buf)
// If error is not nil then panics
if err != nil {
panic(err)
}
// Prints output
fmt.Printf("Content in buffer: %s\n", buf)
fmt.Printf("n: %v\n", n)
}
输出:
Content in buffer: eks
n: 3
在上面的例子中,缓冲区的内容只有三个字节,所以返回“3”,并且在读取所述内容时没有抛出错误,因此错误为“nil”。
示例 2:
// Golang program to illustrate the usage of
// io.SectionReader.Read() function
// Including main package
package main
// Importing fmt, io, and strings
import (
"fmt"
"io"
"strings"
)
// Calling main
func main() {
// Defining reader using NewReader method
reader := strings.NewReader("GeeksforGeeks\nis\na\nCS-Portal.")
// Calling NewSectionReader method with its parameters
r := io.NewSectionReader(reader, 6, 34)
// Defining buffer using make keyword
buf := make([]byte, 25)
// Calling Read method with its parameter
n, err := r.Read(buf)
// If error is not nil then panics
if err != nil {
panic(err)
}
// Prints output
fmt.Printf("Content in buffer: %s\n", buf)
fmt.Printf("n: %v\n", n)
}
输出:
panic: EOF
goroutine 1 [running]:
main.main()
/tmp/sandbox125171693/prog.go:31 +0x25a
在这里,上面代码中使用的缓冲区中的内容的字节数少于声明的字节数,会引发 EOF 错误。