在Go语言中,io软件包为I /O原语提供基本接口。它的主要工作是封装此类原始之王的正在进行的实现。 Go语言中的PipeWriter.Close()函数用于关闭编写器。但是,从PipeReader进行连续读取,即,读取一半的管道不会返回任何字节,并且会返回EOF错误。而且,此函数在io包下定义。在这里,您需要导入“io”包才能使用这些函数。
用法:
func (w *PipeWriter) Close() error
在这里,“w”是指向PipeWriter的指针。其中PipeWriter是管道的写入部分。
返回值:它返回在Close方法之前写入的内容。并且从PipeReader进行的连续读取(即,读取一半的管道)在调用Close()方法之后将不返回任何字节,并且将返回EOF错误。
范例1:
// Golang program to illustrate the usage of
// io.PipeWriter.Close() function
// Including main package
package main
// Importing fmt and io
import (
"fmt"
"io"
)
// Calling main
func main() {
// Calling Pipe method
pipeReader, pipeWriter:= io.Pipe()
// Calling Close method in go function after
// two Write operations
go func() {
pipeWriter.Write([]byte("GfG"))
pipeWriter.Write([]byte("GeeksforGeeks"))
pipeWriter.Close()
// Again calling Write method
pipeWriter.Write([]byte("GfG is a CS-Portal."))
}()
// Creating buffer using make keyword
// of specified length
buffer:= make([]byte, 50)
// Using for loop
for i:= 0; i < 4; i++ {
// Reading the contents in buffer
n, err:= pipeReader.Read(buffer)
// If error is not nil panic
if err != nil {
panic(err)
}
// Prints the content read in buffer
fmt.Printf("%s\n", buffer[:n])
}
}
输出:
GfG GeeksforGeeks panic:EOF goroutine 1 [running]: main.main() /tmp/sandbox342418232/prog.go:42 +0x2d1
此处,两个写入操作的内容是在Close()方法之前写入的,但它们将返回,但不会返回在Close方法之后写入的内容,而是会引发EOF错误。
范例2:
// Golang program to illustrate the usage of
// io.PipeWriter.Close() function
// Including main package
package main
// Importing fmt and io
import (
"fmt"
"io"
)
// Calling main
func main() {
// Calling Pipe method
pipeReader, pipeWriter:= io.Pipe()
// Calling Close method in go function
go func() {
pipeWriter.Close()
// Calling Write method
pipeWriter.Write([]byte("GfG is a CS-Portal."))
}()
// Creating buffer using make keyword
// of specified length
buffer:= make([]byte, 50)
// Using for loop
for i:= 0; i < 4; i++ {
// Reading the contents in buffer
n, err:= pipeReader.Read(buffer)
// If error is not nil panic
if err != nil {
panic(err)
}
// Prints the content read in buffer
fmt.Printf("%s\n", buffer[:n])
}
}
输出:
panic:EOF goroutine 1 [running]: main.main() /tmp/sandbox173042396/prog.go:40 +0x2d1
在这里,在Close方法之前不会执行任何Write操作,因此不会返回任何内容,并且会引发EOF错误。
相关用法
- 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.Close() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。