当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang io.CopyBuffer()用法及代码示例


在Go语言中,io软件包为I /O原语提供基本接口。它的主要工作是封装此类原始之王的正在进行的实现。 Go语言中的CopyBuffer()函数与Copy()方法相同,但唯一的例外是,如果需要一个而不是分配一个临时缓冲区,它将通过提供的缓冲区显示。如果src由WriterTo实现或dst由ReaderFrom实现,则将不使用缓冲区执行复制操作。而且,此函数在io包下定义。在这里,您需要导入“io”包才能使用这些函数。

用法:

func CopyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error)

在这里,“dst”是目标,“src”是将内容复制到目标的源,而“buf”是在内存中保留永久空间的缓冲区。

返回值:它返回复制到“dst”的int64类型的字节总数,并且还返回从src复制到dst(如果有)时遇到的第一个错误。但是,如果缓冲区为零,则分配一个,否则,如果缓冲区的长度为零,则CopyBuffer会出现混乱。

以下示例说明了上述方法的用法:



范例1:

// Golang program to illustrate the usage of 
// io.CopyBuffer() function 
  
// Including main package 
package main 
  
// Importing fmt, io, os, and strings 
import ( 
    "fmt"
    "io"
    "os"
    "strings"
) 
  
// Calling main 
func main() { 
  
    // Defining source 
    src:= strings.NewReader("GfG\n") 
  
    // Defining destination using Stdout 
    dst:= os.Stdout 
  
    // Defining buffer of length one using 
    // make keyword 
    buffer:= make([]byte, 1) 
  
    // Calling CopyBuffer method with its parameters 
    bytes, err:= io.CopyBuffer(dst, src, buffer) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("The number of bytes are:%d\n", bytes) 
}

输出:

GfG
The number of bytes are:4

范例2:

// Golang program to illustrate the usage of 
// io.CopyBuffer() function 
  
// Including main package 
package main 
  
// Importing fmt, io, os, and strings 
import ( 
    "fmt"
    "io"
    "os"
    "strings"
) 
  
// Calling main 
func main() { 
  
    // Defining two sources 
    src1:= strings.NewReader("GfG\n") 
    src2:= strings.NewReader("GeeksforGeeks is a CS-Portal\n") 
  
    // Defining destination using Stdout 
    dst:= os.Stdout 
  
    // Defining buffer of length one using 
    // make keyword 
    buffer:= make([]byte, 1) 
  
    // Calling CopyBuffer method with its parameters 
    bytes1, err:= io.CopyBuffer(dst, src1, buffer) 
    bytes2, err:= io.CopyBuffer(dst, src2, buffer) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("The number of bytes are:%d\n", bytes1) 
    fmt.Printf("The number of bytes are:%d\n", bytes2) 
}

输出:

GfG
GeeksforGeeks is a CS-Portal
The number of bytes are:4
The number of bytes are:29

在此,在上面的示例中,使用了NewReader()字符串方法,从该方法中读取要复制的内容。此处使用“Stdout”来创建默认文件描述符,并在其中写入复制的内容。而且,上面的相同缓冲区在调用CopyBuffer()方法时被重用,并且不需要额外的缓冲区来分配。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 io.CopyBuffer() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。