GO语言"io"包中"TeeReader"函数的用法及代码示例。
用法:
func TeeReader(r Reader, w Writer) Reader
TeeReader 返回一个读取器,它将从 r 读取的内容写入 w。通过它对 r 执行的所有读取都与对 w 的相应写入匹配。没有内部缓冲 - 写入必须在读取完成之前完成。写入时遇到的任何错误都报告为读取错误。
例子:
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
var r io.Reader = strings.NewReader("some io.Reader stream to be read\n")
r = io.TeeReader(r, os.Stdout)
// Everything read from r will be copied to stdout.
if _, err := io.ReadAll(r); err != nil {
log.Fatal(err)
}
}
输出:
some io.Reader stream to be read
相关用法
- GO Template用法及代码示例
- GO TempFile用法及代码示例
- GO TempDir用法及代码示例
- GO Template.Delims用法及代码示例
- GO Time.Sub用法及代码示例
- GO TrailingZeros8用法及代码示例
- GO Tx.ExecContext用法及代码示例
- GO Time.Equal用法及代码示例
- GO ToTitle用法及代码示例
- GO Time.After用法及代码示例
- GO Title用法及代码示例
- GO TrimRight用法及代码示例
- GO ToLowerSpecial用法及代码示例
- GO Time.Format用法及代码示例
- GO ToUpper用法及代码示例
- GO Trunc用法及代码示例
- GO TrailingZeros32用法及代码示例
- GO To用法及代码示例
- GO Time.AppendFormat用法及代码示例
- GO Time.AddDate用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 TeeReader。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。