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


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


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

用法:

func (w *PipeWriter) Write(data []byte) (n int, err error)

在这里,“w”是指向PipeWriter的指针。其中PipeWriter是管道的写入部分,而“data”是写入数据的字节片。

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

范例1:



// Golang program to illustrate the usage of 
// io.pipeWriter.Write() function 
  
// Including main package 
package main 
  
// Importing fmt and io 
import ( 
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Defining data parameter of Read method 
    data:= make([]byte, 20) 
  
    // Reading data into the buffer stated 
    go func() { 
        pipeReader.Read(data) 
  
        // Closing read half of the pipe 
        pipeReader.Close() 
    }() 
  
    // Using for loop 
    for i:= 0; i < 1; i++ { 
  
        // Calling pipeWriter.Write() method 
        n, err:= pipeWriter.Write([]byte("GfG!")) 
  
        // If error is not nil panic 
        if err != nil { 
            panic(err) 
        } 
  
        // Prints the content written 
        fmt.Printf("%v\n", string(data)) 
  
        // Prints the number of bytes 
        fmt.Printf("%v\n", n) 
    } 
}

输出:

GfG!
4

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

范例2:

// Golang program to illustrate the usage of 
// io.pipeWriter.Write() function 
  
// Including main package 
package main 
  
// Importing fmt and io 
import ( 
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Defining data parameter of Read method 
    data:= make([]byte, 20) 
  
    // Reading data into the buffer stated 
    go func() { 
        pipeReader.Read(data) 
  
        // Closing read half of the pipe 
        pipeReader.Close() 
    }() 
  
    // Using for loop 
    for i:= 0; i < 2; i++ { 
  
        // Calling pipeWriter.Write() method 
        n, err:= pipeWriter.Write([]byte("GfG!")) 
  
        // If error is not nil panic 
        if err != nil { 
            panic(err) 
        } 
  
        // Prints the content written 
        fmt.Printf("%v\n", string(data)) 
  
        // Prints the number of bytes 
        fmt.Printf("%v\n", n) 
    } 
}

输出:

GfG!
4
panic:io:read/write on closed pipe

goroutine 1 [running]:
main.main()
    /tmp/sandbox367087659/prog.go:38 +0x3ad

在此,在for循环的第一次迭代之后,由于关闭了管道的读取端,因此返回了ErrClosedPipe错误。




相关用法


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