草庐IT

int-type

全部标签

GO 将字符串与 int 连接起来

我有以下代码需要获取int值并将其添加到带有字符串后缀的字符串中。例如一开始我得到这个"fdsdata"在if语句之后应该是这样的"fdsdata10M"这是代码:ltrCfg:="fdsdata"iflen(cfg.ltrSharedDicts)>0{ltrCfg+=strconv.Itoa(cfg.ltrSharedDicts["c_data"])ltrCfg+="M"}else{ltrCfg+="10M"}out=append(out,ltrCfg)ltrCert:=“fdsdata"iflen(cfg.ltrSharedDicts)>0{ltrCert+=strconv.Ito

go - 将值传递给结构时为 "missing type in composite literal"

我在下面这样定义了我的结构:typeS_LoginSuccessedstruct{Codeint`json:"code"`Datastruct{Userstruct{Sexstring`json:"sex"`IsVipbool`json:"is_vip"`Namestring`json:"name"`}`json:"user"`}`json:"data"`Timestampint64`json:"timestamp"`Messagestring`json:"message"`}我用这个来调用它:success_message:=S_LoginSuccessed{123,{{"male"

reflection - 在 go 反射包中,调用 Value.Kind() 是 Value.Type().Kind() 的语法糖吗?

两个reflect.Type接口(interface)和reflect.Valuetype实现相同的Kind()方法签名,假设我们有一些值对象v:=reflect.ValueOf(x)v.Kind()只是调用v.Type().Kind()吗? 最佳答案 它们包含相同的值,但似乎指的不是同一件事:type.go来源value.go来源Type通常由未导出的结构rtype实现(通过TypeOf),而Value包含一个*rtype并扩展flag,它本身是Kind的简化形式://flagholdsmetadataaboutthevalue.

types - 我如何获得类型

我想从类型名称中获取(反射(reflect))类型。http://play.golang.org/p/c-9IpSafx0packagemainimport("fmt""reflect")typeNamestringfuncmain(){fmt.Println("Hello,playground")varnameName="Taro"fmt.Println(name)fmt.Println(getType(name))//fmt.Println(getType(Name))//wanttosameasgetType(name)}funcgetType(vinterface{})refl

arrays - Go:对数组进行排序,如果在 `Less(i, j int)` 中发现错误则丢弃元素

给定以下结构typePointstruct{datetimeRecordedtime.Time}//Returnstrueifthepointwasrecordedbeforethecomparisonpoint.//Ifdatetimeisnotavailablereturnfalseandanerrorfunc(p1Point)RecordedBefore(p2Point)(isBeforebool,errerror){if(p1.datetimeRecorded.IsZero())||(p2.datetimeRecorded.IsZero()){err=ErrNoDatetime

go - 范围超过 `type x []struct` 或 `type y struct`?

似乎没有Ranger接口(interface)用于自定义类型。有什么类似的吗?或者我是否必须制作一个将类型转换为slice或映射的方法?编辑:我当然可以将x转换为[]struct,但这会使更改x的基础类型变得更加困难。 最佳答案 for循环的range变体不能扩展到自定义集合,这些集合不仅仅是重命名的slice、映射、字符串或channel。没有Ranger界面或类似的东西。如果您想遍历自定义类型,请考虑使用for循环,如下所示:forx,eof:=col.Next();x,eof=col.Next();!eof{//...}其中N

types - 在 Go 中调用嵌入式类型的重载方法的正确方法

我有一个界面:packagepkgtypeBaseInterfaceinterface{funcNifty()boolfuncOther1()funcOther2()...funcOther34123()}以及实现它的结构:packagepkgtypeImplstruct{}func(Impl)Nifty()bool{...}然后是另一个想要嵌入第一个并做它自己的Nifty()的结构:packagemyOtherPackageimport"pkg"typeImplToostruct{*pkg.Impl}func(itImplToo)Nifty()bool{...somethingels

Go type assert nil 到指针类型

这个问题在这里已经有了答案:ConvertnilinterfacetopointerofsomethinginGolang?(1个回答)关闭7年前。为什么我不能将nil类型断言为指针类型?这背后的逻辑是什么?packagemainfuncmain(){varsinterface{}=nilvarp*string=nilvarq*string=s.(*string)_=q_=p}

go - 如何从 []interface{} 转换为 []int?

这个问题在这里已经有了答案:Typeconvertingslicesofinterfaces(9个回答)关闭7年前。我想得到非重复的[]int。我正在使用set,但我不知道如何从set中获取[]int。我该怎么做?packagemainimport("fmt""math/rand""time""github.com/deckarep/golang-set")funcpickup(maxint,numint)[]int{set:=mapset.NewSet()rand.Seed(time.Now().UnixNano())forset.Cardinality()

Golang jsonapi 需要 string 或 int 但 mongo 需要 bson.ObjectId

使用go和以下包:github.com/julienschmidt/httproutergithub.com/shwoodard/jsonapigopkg.in/mgo.v2/bson我有以下结构:typeBlogstruct{Posts[]interface{}}typeBlogPoststruct{Idbson.ObjectId`jsonapi:"primary,posts"bson:"_id,omitempty"`Authorstring`jsonapi:"attr,author"`CreatedDatetime.Time`jsonapi:"attr,created_date"`