当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang io.PipeReader.Read()用法及代码示例


在Go语言中,io软件包为I /O原语提供基本接口。它的主要工作是封装此类原始之王的正在进行的实现。 Go语言中的PipeReader.Read()函数用于实现Read的标准接口。它从管道中读取信息并将其阻塞,直到出现写入器或管道的写入端关闭为止。而且,此函数在io包下定义。在这里,您需要导入“io”包才能使用这些函数。

用法:

func (r *PipeReader) Read(data []byte) (n int, err error)

此处,“r”是指向PipeReader的指针。其中,PipeReader是读取管道的一半,而“data”是指定长度的字节片,并将写入的数据读取到其中。

返回值:它返回读取的字节数和一个错误(如果有)。但是,如果管道的写端因错误而关闭,则该错误将作为err返回,否则返回的err为EOF错误。

范例1:



// Golang program to illustrate the usage of 
// io.PipeReader.Read() function 
  
// Including main package 
package main 
  
// Importing fmt and io 
import ( 
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Writing data to the pipe 
    go func() { 
        pipeWriter.Write([]byte("GfG")) 
        pipeWriter.Write([]byte("GeeksforGeeks")) 
        pipeWriter.Write([]byte("GfG is a CS-Portal.")) 
  
        // Closing write half of the pipe 
        pipeWriter.Close() 
  
        // Again calling Write method 
        pipeWriter.Write([]byte("Author!")) 
    }() 
  
    // Defining data parameter of Read method 
    data:= make([]byte, 20) 
  
    // Using for loop 
    for i:= 0; i < 3; i++ { 
  
        // Calling pipeReader.Read() method 
        n, err:= pipeReader.Read(data) 
  
        // If error is not nil panic 
        if err != nil { 
            panic(err) 
        } 
  
        // Prints the content read in buffer 
        fmt.Printf("%s\n", data[:n]) 
  
        // Prints number of bytes read 
        fmt.Printf("%v\n", n) 
    } 
}

输出:

GfG
3
GeeksforGeeks
13
GfG is a CS-Portal.
19

在此,由于在“for”循环运行之前管道的写端没有关闭,因此不会返回错误。

范例2:

// Golang program to illustrate the usage of 
// io.PipeReader.Read() function 
  
// Including main package 
package main 
  
// Importing fmt and io 
import ( 
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Writing data to the pipe 
    go func() { 
        pipeWriter.Write([]byte("GfG")) 
        pipeWriter.Write([]byte("GeeksforGeeks")) 
        pipeWriter.Write([]byte("GfG is a CS-Portal.")) 
  
        // Closing write half of the pipe 
        pipeWriter.Close() 
  
        // Again calling Write method 
        pipeWriter.Write([]byte("Author!")) 
    }() 
  
    // Defining data parameter of Read method 
    data:= make([]byte, 20) 
  
    // Using for loop 
    for i:= 0; i < 4; i++ { 
  
        // Calling pipeReader.Read() method 
        n, err:= pipeReader.Read(data) 
  
        // If error is not nil panic 
        if err != nil { 
            panic(err) 
        } 
  
        // Prints the content read in buffer 
        fmt.Printf("%s\n", data[:n]) 
  
        // Prints number of  bytes read 
        fmt.Printf("%v\n", n) 
    } 
}

输出:

GfG
3
GeeksforGeeks
13
GfG is a CS-Portal.
19
panic:EOF

goroutine 1 [running]:
main.main()
    /tmp/sandbox634835876/prog.go:43 +0x364

在这里,在for循环的第三次迭代之后,由于管道的写端被关闭,因此返回了EOF错误。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 io.PipeReader.Read() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。