草庐IT

is_io_type

全部标签

go - Type a type后,不能再混用

config.Config有一个方法funcString(string)string我想将这些方法混合到我的类型Config1.什么时候可以//typeConfigstructtypeConfigstruct{//astructhasmanymethodsconfig.ConfigPathstring}//newandcallstringmethodvaraConfig=&Config{}a.String("test")什么时候不行//typeConfigstructtype(Configureconfig.ConfigConfigstruct{ConfigurePathstring}

go - 不能在 func 参数中使用 bytes.Buffer 作为 io.WriterAt 类型

今天在go上苦苦挣扎..我不得不问的第二个问题。我有2个测试写入函数Write(),它采用writerio.WriterAt和contentinterface{}.我正在处理为函数编写的(2)个测试,TestWriteSuccessful和TestWriteFail。我在测试这两个函数时得到的错误是:cannotuse&b(type*bytes.Buffer)astypeio.WriterAtinargumenttoWrite:问题什么实现了我可以在这些测试中替换bytes.Buffer以使测试正常运行的WriterAt?我尝试过的将b的类型更改为os.File-b.len()>0将失

go - 不能使用 args (type []string) 作为 type []interface {}

这个问题在这里已经有了答案:Typeconvertingslicesofinterfaces(9个回答)关闭3年前。我的golangsqlite插入函数。我正在使用这个包"github.com/mattn/go-sqlite3"funcInsert(args...string)(errerror){db,err:=sql.Open("sqlite3","sqlite.db")iferr!=nil{return}q,err:=db.Prepare(args[0])iferr!=nil{return}_,err=q.Exec(args[1:]...)return}main(){err:=I

go - 在 golang 中,如何将 interface{} 类型断言为 reflect.Type 指定的类型?

例如,我有一个名为a的interface{},还有一个名为elemTypereflect.Type/。现在,我想给elemType键入asserta,但是a.(elemType)无法编译成功。如何解决?对不起我的困惑表达。我的意思是我从一个函数中得到一个类型,我想为这个类型断言一个接口(interface){},但是这个类型存储在一个reflect.Type变量中。我想做的类似于下面的代码:varainterface{}//dosomethingfuncgetType()reflect.Type{varretreflect.Type//dosomethingreturnret}targ

go - 传播时 "Cannot use variable of type []struct as []interface"

这个问题在这里已经有了答案:sliceofstruct!=sliceofinterfaceitimplements?(6个答案)关闭8个月前。原型(prototype)函数functest(i...interface{}){//Codehere}预期用途typefoostruct{//Fields}foos:=[]foo{//foo1,foo2...}test(foos...)//ERRORtest(foos[1],foos[2],...)//OK错误cannotusefoos(variableoftype[]foos)as[]interface{}valueinargumenttot

go - type <Name> <dataType> 和 type <Name> = <dataType> 有什么区别

我是Golang的新手。抱歉,我仍然对以下两者之间的区别感到困惑:type和type=这是一个例子:packagemainimport"fmt"funcmain(){var(strWordWordstrTextText)strWord="gopher"strText="golang"fmt.Printf("strWord=%s,TypeofValue=%T\n",strWord,strWord)fmt.Printf("strText=%s,TypeofValue=%T\n",strText,strText)}typeWordstringtypeText=string输出strWord=

android - 如何将 Golang 和 Android 与 socket.io 连接起来?

我想使用socket.io将数据从Android发送到Golang。我用Nodejs正确地做到了但是现在,我想用Go来做。我找不到简单的示例。我该怎么做? 最佳答案 我假设您想要使用Socket.IO服务器库的Go实现,而不是标准的Node.js。如果是这样,您可以尝试googollee/go-socket.ioproject.这是项目页面中的示例:packagemainimport("log""net/http""github.com/googollee/go-socket.io")funcmain(){server,err:=s

go - *[]Type 和 []*Type 在 go 中有什么区别

假设我们有一个名为Person的结构,它由一个名为People的结构持有。typePerson{Namestringageint}typePeople{CitystringList[]*Person//checkthisout}typePeople2{CitystringList*[]Person//What'sthedifference?}[]*Person和*[]Person到底是什么意思?如何获取这些slice的元素值?我比较熟悉C,所以如果你能用C解释一下,我将不胜感激 最佳答案 []*Type是指向Type的指针片段。*[

go - Type.Field 和 Value.Field 有什么区别?

以下代码。funcfieldsTest(targetinterface{})([]field,error){s:=reflect.ValueOf(target)s=s.Elem()targetType:=s.Type()fori:=0;i如果目标接口(interface)是struct,f的返回值和structField一样吗? 最佳答案 Type.Field()返回reflect.StructField类型的值,和Value.Field()返回reflect.Value类型的值.所以它们不能相同。Type.Field()返回描述字

http - 如何倒带 io.ReadCloser

我总是被io.ReadCloser困住,然后忘记我以前读过它,当我再次阅读它时,我得到一个空的负载。我希望对我的愚蠢进行一些lint检查。尽管如此,我认为我可以使用TeeReader,但它在这里没有达到我的期望:funcmain(){http.HandleFunc("/",func(whttp.ResponseWriter,r*http.Request){buf:=&bytes.Buffer{}tee:=io.TeeReader(r.Body,buf)body,err:=ioutil.ReadAll(tee)iferr!=nil{http.Error(w,err.Error(),htt