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