在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错误。
相关用法
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
- Golang time.Round()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang flag.Bool()用法及代码示例
- Golang time.Sleep()用法及代码示例
- Golang time.Time.Year()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 io.PipeWriter.Write() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。