📜  Golang 中的 io.SectionReader.ReadAt()函数示例

📅  最后修改于: 2021-10-25 02:56:13             🧑  作者: Mango

在 Go 语言中, io包为 I/O 原语提供基本接口。它的主要工作是封装这种原语之王的持续实现。 Go 语言中的SectionReader.ReadAt()函数用于返回NewSectionReader方法读取的字节数。此方法将缓冲区和偏移量作为其参数。而且,这个函数是在io包下定义的。在这里,您需要导入“io”包才能使用这些功能。

句法:

func (s *SectionReader) ReadAt(p []byte, off int64) (n int, err error)

这里,“s”是指向由NewSectionReader方法返回的SectionReader的指针,“p”是指定字节长度的缓冲区,“off”是从读取开始的 int64 类型的偏移量。

返回值:它返回从指定长度的指定缓冲区返回的内容的字节数以及偏移量,如果有也返回错误,但如果没有发生错误则返回“nil”。

下面的例子说明了上述方法的使用:

示例 1:

// Golang program to illustrate the usage of
// io.SectionReader.ReadAt() 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\n")
  
    // Calling NewSectionReader method with its parameters
    r := io.NewSectionReader(reader, 6, 12)
  
    // Defining buffer using make keyword
    buf := make([]byte, 4)
  
    // Calling ReadAt method with its parameters
    n, err := r.ReadAt(buf, 2)
  
    // 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: Geek
n: 4

在上面的例子中,首先从 NewSectionReader() 返回内容,然后从 ReadAt() 方法中的给定偏移量读取内容,直到缓冲区中规定的字节数。然后结果内容的字节数在此处作为输出返回。此外,上面缓冲区的内容只有4个字节,因此返回“4”并且读取所述内容时没有抛出错误,因此错误为“nil”。

示例 2:

// Golang program to illustrate the usage of
// io.SectionReader.ReadAt() 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("Computer Science!")
  
    // Calling NewSectionReader method with its parameters
    r := io.NewSectionReader(reader, 6, 12)
  
    // Defining buffer using make keyword
    buf := make([]byte, 10)
  
    // Calling ReadAt method with its parameters
    n, err := r.ReadAt(buf, 2)
  
    // 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/sandbox798260752/prog.go:31 +0x263

这里,上面代码中使用的缓冲区中的内容比声明的字节少,会抛出 EOF 错误。