在 Go 语言中,io 包提供了基本的 I/O 原语接口。它的主要工作是封装这些原语的实现。在 Go 语言中, TeeReader() 函数用于返回一个 “Reader”,它从指定的 “r” 读取,然后将其写入指定的 “w”。同时,所有通过指定的 “r” 执行的读取都与相对应的写入到指定的 “w” 进行比较。该方法不需要任何内部缓冲区,读取完成时即可完成写入。此外,该函数是在 io 包中定义的。因此,在使用这些函数之前,需要导入 “io” 包。
语法:
func TeeReader(r Reader, w Writer) Reader
在这里,“r” 是指定的 Reader,而“w” 是指定的 Writer。
返回值: 它返回一个 “Reader”,它从指定的 “r” 读取并写入到给定的 “w” 中。但是,在写入内容时遇到的任何错误都将作为读取错误返回。
下面的示例说明了上述方法的使用:
示例 1:
// Golang program to illustrate the usage of
// io.TeeReader() function
// Including main package
package main
// Importing fmt, io, strings, bytes, and os
import (
"bytes"
"fmt"
"io"
"os"
"strings"
)
// Calling main
func main() {
// Defining reader using NewReader method
reader := strings.NewReader("GfG\n")
// Defining buffer
var buf bytes.Buffer
// Calling TeeReader method with its parameters
r := io.TeeReader(reader, &buf)
// Calling Copy method with its parameters
Reader, err := io.Copy(os.Stdout, r)
// If error is not nil then panics
if err != nil {
panic(err)
}
// Prints output
fmt.Printf("n: %v\n", Reader)
}
输出:
GfG
n: 4
在上面的示例中,使用 Copy() 方法来返回一个 “Reader”,使用 strings 的 NewReader() 方法来写入要读取的内容,并在此处还使用了外部缓冲区。
示例 2:
// Golang program to illustrate the usage of
// io.TeeReader() function
// Including main package
package main
// Importing fmt, io, strings, bytes, and os
import (
"bytes"
"fmt"
"io"
"os"
"strings"
)
// Calling main
func main() {
// Defining reader using NewReader method
reader := strings.NewReader("GeeksforGeeks\nis\na\nCS-Portal.\n")
// Defining buffer
var buf bytes.Buffer
// Calling TeeReader method with its parameters
r := io.TeeReader(reader, &buf)
// Calling Copy method with its parameters
Reader, err := io.Copy(os.Stdout, r)
// If error is not nil then panics
if err != nil {
panic(err)
}
// Prints output
fmt.Printf("n: %v\n", Reader)
}
输出:
GeeksforGeeks
is
a
CS-Portal.
n: 30