GO语言"io"包中"MultiWriter"函数的用法及代码示例。
用法:
func MultiWriter(writers ...Writer) Writer
MultiWriter 创建一个写入器,将其写入复制到所有提供的写入器,类似于 Unix tee(1) 命令。
每次写入都会写入每个列出的作者。如果列出的写入器返回错误,则整个写入操作将停止并返回错误;它不会继续列表。
例子:
package main
import (
"bytes"
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
var buf1, buf2 bytes.Buffer
w := io.MultiWriter(&buf1, &buf2)
if _, err := io.Copy(w, r); err != nil {
log.Fatal(err)
}
fmt.Print(buf1.String())
fmt.Print(buf2.String())
}
输出:
some io.Reader stream to be read some io.Reader stream to be read
相关用法
- GO MultiReader用法及代码示例
- GO Mul32用法及代码示例
- GO Mul64用法及代码示例
- GO MethodSet用法及代码示例
- GO MakeFunc用法及代码示例
- GO Mkdir用法及代码示例
- GO Map用法及代码示例
- GO MkdirTemp用法及代码示例
- GO MakeTable用法及代码示例
- GO Modf用法及代码示例
- GO Mod用法及代码示例
- GO MarshalIndent用法及代码示例
- GO Marshal用法及代码示例
- GO MatchString用法及代码示例
- GO Month用法及代码示例
- GO Match用法及代码示例
- GO MkdirAll用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 MultiWriter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。