Golanger

Golanger

文章 19 浏览 71

go语言的++操作。没有自增操作?

go语言的文档里说: Finally, since Go has no comma operator and ++ and -- are statements not expressions, if you want to run multiple variab…

坐在坟头思考人生 2022-01-04 15:29:45 906 0

golang type和var区别

有一个类 type MyPoint struct { X, Y float64 } 以下2种声明方式有什么区别: var Path []MyPoint type Path2 []MyPoint  …

带上头具痛哭 2021-12-08 07:44:36 949 0

Go 调用C语言,动态链接后的执行速度是静态链接的3倍。好奇怪,求解

Go 调用C语言,动态链接后的执行速度是静态链接的3倍。好奇怪,求解 代码是相同的 RT 各位大牛有可能解惑的吗? …

只为守护你 2021-12-01 16:41:29 869 0

go语言 github.com/google/gopacket/pcap 报错 exec: "gcc": executable file not found in %PATH%

go语言build 报错 exec: "gcc": executable file not found in %PATH% 使用了github.com/google/gopacket/pcap C:/Go/bin/go.exe build -i [D:/go/sr…

凡尘雨 2021-11-29 14:00:33 902 0

go 数组 map问题

我改怎么建立一个可以承载如下数据的方法 现在是有三个数组的  a ["xx","cc","xxb"] b["exx","cqc","wxx"] c["xwx","ccd","xxe"] 组合成如下方式  0=…

恋你朝朝暮暮 2021-11-27 08:40:47 838 0

golang如何读取文件名中包含空格的文件

环境: win8.1 x64, go1.3 x64 程序调用方式: 问题描述: 只要是当前文件中含有空格程序就报错,错误如下: The system cannot find the file specified.…

流心雨 2021-11-27 07:07:31 994 0

如何用GO语言开发一个不用DL从容用GOOGEL DOCS调查表的功能

大家好!我喜欢GOOGLE DOCS的调查表,相信很多朋友同我一样.因为众所周知的原因,国内无法用. 我决心努力学习:用GO语言开发一个不用DL从容用GOOGEL DOCS…

草莓味的萝莉 2021-11-25 08:53:21 812 0

golang为什么引用传递的两个地址是不同的呢? ​

@chai2010 你好,想跟你请教个问题:  package main  import "fmt" type Test struct { Id int } func main() { t := new(Test) fmt.Println(&t) t.t…

无人问我粥可暖 2021-11-24 21:51:57 717 0

搭了一天的sublime text 的go环境,已经不能编译,求助

我在sublime text里面用package control装了gosublime,但是不能自动提示。输入import 没有提示fmt。输入fmt.也没有自动提示。 然后我还装了go build…

奢望 2021-11-24 05:35:14 891 0

Write(w io.Writer, order ByteOrder, data interface{}) error 这个函数的作用是什么啊?

func (w *binWriter) Write(v interface{}) { if w.err != nil { return } switch v.(type) { case string: s := v.(string) w.Write(int32(len(s)))…

能否归途做我良人 2021-11-24 02:46:16 927 0

求解*os.File没有实现Read方法怎么调用NewReaderSize成功呢?

这个是main里截取的: f, _ := os.Open("test.txt") defer f.Close() r := bufio.NewReaderSize(f, 4096) 我查阅了,f应该是*os.File, NewReaderSize…

离去的眼神 2021-11-21 17:59:49 682 0

mongodb mgo的存储多维对象的问题?

想要保存如下类似的数据 {"_ibj_id":"1","url_id":'1',"url":{"0":"http://0.com","1":"http:://1.com"}} 但是mongodb最终保存的数据 看下面的代码 /…

永不分离 2021-11-21 13:48:23 697 0

mgo如何插入_id

我用的是labix.org 的 mgo驱动, 给struct加一个 _id 变量 往mongoDB里插入 _id 索引,但是总是无效。 这个怎么回事?? …

噩梦成真你也成魔 2021-11-20 16:16:12 741 0

goeclipse app engine无法选择app engine sdk?

mac  eclipse 4.2 ,这个是提示: 这个是 go_appengine 目录下的文件: …

叹沉浮 2021-11-19 22:32:34 844 0
更多

推荐作者

杨绘峰

文章 0 评论 0

听闻余生

文章 0 评论 0

谜兔

文章 0 评论 0

xiaotwins

文章 0 评论 0

你说

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文