有没有人对Golang的NopCloser
功能有好的或任何解释?
我环顾四周,但除了Golang的主要文档解释之外没有找到任何东西:
NopCloser返回一个ReadCloser,其中包含一个无操作的Close方法,用于包装提供的Reader r。
任何指针或解释将不胜感激。谢谢。
每当你需要返回io.ReadCloser
,同时确保Close()
可用时,你可以使用NopCloser
来构建这样的ReaderCloser。
你可以在fork of gorest的util.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
}
它用于需要io.ReadCloser
的函数,但是您当前的对象(例如bytes.Buffer
)不提供Close函数。