Golang io.SectionReader.ReadAt()的使用方法和示例

Golang io.SectionReader.ReadAt()的使用方法和示例

在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错误。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程