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


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


在Go语言中,io软件包为I /O原语提供基本接口。它的主要工作是封装此类原始之王的正在进行的实现。 Go语言中的Pipe()函数用于创建并发的in-memory管道,并且可以应用该函数来链接期望io.Reader的代码与期望io.Writer的代码。此处,管道上的读取和写入配对为one-to-one,除非需要多个“Reads”来获取单个“Write”。这表示每次对PipeWriter的写操作都停止,直到满足了取自PipeReader的一个或多个Reads(完全读取已写入的数据)为止。

但是,数据是直接从写入到相关读取读取的,内部没有缓冲。而且,此函数在io包下定义。在这里,您需要导入“io”包才能使用这些函数。

用法:

func Pipe() (*PipeReader, *PipeWriter)

此处,“PipeReader”是指向PipeReader的指针。其中PipeReader是管道的读取部分,而“PipeWriter”是指向PipeWriter的指针。其中PipeWriter是管道的写入部分。

返回值:它返回一个指向PipeReader和PipeWriter的指针。



注意:它可以同时或通过关闭来调用读写。但是,对Read的并行调用和对Write的并行调用也是安全的。单独的调用将顺序关闭。

范例1:

// Golang program to illustrate the usage of 
// io.Pipe() function 
  
// Including main package 
package main 
  
// Importing fmt, io, and bytes 
import ( 
    "bytes"
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Using Fprint in go function to write 
    // data to the file 
    go func() { 
        fmt.Fprint(pipeWriter, "Geeks\n") 
  
        // Using Close method to close write 
        pipeWriter.Close() 
    }() 
  
    // Creating a buffer 
    buffer:= new(bytes.Buffer) 
  
    // Calling ReadFrom method and writing 
    // data into buffer 
    buffer.ReadFrom(pipeReader) 
  
    // Prints the data in buffer 
    fmt.Print(buffer.String()) 
}

输出:

Geeks

范例2:

// Golang program to illustrate the usage of 
// io.Pipe() function 
  
// Including main package 
package main 
  
// Importing fmt, io, and bytes 
import ( 
    "bytes"
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Using Fprint in go function to write 
    // data to the file 
    go func() { 
        fmt.Fprint(pipeWriter, "GeeksforGeeks\nis\na\nCS-Portal.\n") 
  
        // Using Close method to close write 
        pipeWriter.Close() 
    }() 
  
    // Creating a buffer 
    buffer:= new(bytes.Buffer) 
  
    // Calling ReadFrom method and writing 
    // data into buffer 
    buffer.ReadFrom(pipeReader) 
  
    // Prints the data in buffer 
    fmt.Print(buffer.String()) 
}

输出:

GeeksforGeeks
is
a
CS-Portal.



相关用法


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