當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Golang io.PipeWriter.CloseWithError()用法及代碼示例


在Go語言中,io軟件包為I /O原語提供基本接口。它的主要工作是封裝此類原始之王的正在進行的實現。 Go語言中的PipeWriter.CloseWithError()函數用於關閉編寫器。但是,從PipeReader進行連續讀取,即,讀取一半的管道將不返回任何字節,並且如果錯誤為nil,則返回錯誤err或EOF錯誤。而且,此函數在io包下定義。在這裏,您需要導入“io”包才能使用這些函數。

用法:

func (w *PipeWriter) CloseWithError(err error) error

在這裏,“w”是指向PipeWriter的指針。其中PipeWriter是管道的寫入部分,而“err”是我們在代碼中指出的錯誤(如果發生錯誤,將在打印的代碼中顯示)。

返回值:如果有錯誤,則返回錯誤,否則返回EOF。

注意:如果此方法存在,並且永遠返回“nil”,則永遠不會重寫該方法。



範例1:

// Golang program to illustrate the usage of 
// io.PipeWriter.CloseWithError() function 
  
// Including main package 
package main 
  
// Importing fmt and io 
import ( 
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Defining data parameter of Read method 
    data:= make([]byte, 20) 
  
    // Reading data into the buffer stated 
    go func() { 
        pipeReader.Read(data) 
  
        // Calling CloseWithError() method with 
        // its parameter 
        pipeReader.CloseWithError(fmt.Errorf("There is an "+ 
                              "error in the code written!")) 
    }() 
  
    // Using for loop 
    for i:= 0; i < 1; i++ { 
  
        // Calling pipeWriter.Write() method 
        n, err:= pipeWriter.Write([]byte("GeeksforGeeks!")) 
  
        // If error is not nil panic 
        if err != nil { 
            panic(err) 
        } 
  
        // Prints the content written 
        fmt.Printf("%v\n", string(data)) 
  
        // Prints the number of bytes 
        fmt.Printf("%v\n", n) 
    } 
}

輸出:

GeeksforGeeks!
14

此處,未返回錯誤,因為此處未調用CloseWithError()方法,因為循環僅在一次讀操作後停止。

範例2:

// Golang program to illustrate the usage of 
// io.PipeWriter.CloseWithError() function 
  
// Including main package 
package main 
  
// Importing fmt and io 
import ( 
    "fmt"
    "io"
) 
  
// Calling main 
func main() { 
  
    // Calling Pipe method 
    pipeReader, pipeWriter:= io.Pipe() 
  
    // Defining data parameter of Read method 
    data:= make([]byte, 20) 
  
    // Reading data into the buffer stated 
    go func() { 
        pipeReader.Read(data) 
  
        // Calling CloseWithError() method with 
        // its parameter 
        pipeReader.CloseWithError(fmt.Errorf("There is"+ 
                      " an error in the code written!")) 
    }() 
  
    // Using for loop 
    for i:= 0; i < 2; i++ { 
  
        // Calling pipeWriter.Write() method 
        n, err:= pipeWriter.Write([]byte("GeeksforGeeks!")) 
  
        // If error is not nil panic 
        if err != nil { 
            panic(err) 
        } 
  
        // Prints the content written 
        fmt.Printf("%v\n", string(data)) 
  
        // Prints the number of bytes 
        fmt.Printf("%v\n", n) 
    } 
}

輸出:

GeeksforGeeks!
14
panic:There is an error in the code written!

goroutine 1 [running]:
main.main()
    /tmp/sandbox246824679/prog.go:39 +0x3c2

此處,由於“for”循環在第二次迭代後停止,因此調用CloseWithError()方法時將引發錯誤。而這裏返回的錯誤就是我們所說的。




相關用法


注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 io.PipeWriter.CloseWithError() Function in Golang with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。