Golang IO / OUTIL NopCloser

问题描述 投票:15回答:2

有没有人对Golang的NopCloser功能有好的或任何解释? 我环顾四周,但除了Golang的主要文档解释之外没有找到任何东西:

NopCloser返回一个ReadCloser,其中包含一个无操作的Close方法,用于包装提供的Reader r。

任何指针或解释将不胜感激。谢谢。

go reader
2个回答
18
投票

每当你需要返回io.ReadCloser,同时确保Close()可用时,你可以使用NopCloser来构建这样的ReaderCloser。

你可以在fork of gorestutil.go中看到一个例子

//Marshals the data in interface i into a byte slice, using the Marhaller/Unmarshaller specified in mime.
//The Marhaller/Unmarshaller must have been registered before using gorest.RegisterMarshaller
func InterfaceToBytes(i interface{}, mime string) (io.ReadCloser, error) {
    v := reflect.ValueOf(i)
    if v.Kind() == reflect.Ptr {
        v = v.Elem()
    }
    switch v.Kind() {
    case reflect.Bool:
        x := v.Bool()
        if x {
            return ioutil.NopCloser(bytes.NewBuffer([]byte("true"))), nil
        }

9
投票

它用于需要io.ReadCloser的函数,但是您当前的对象(例如bytes.Buffer)不提供Close函数。

© www.soinside.com 2019 - 2024. All rights reserved.