golang
已收录文章:1794篇
-
问题内容 在 golang 中,JSON 消息中的数字总是被解析为 float64。为了检测它是否真的是整数,我reflect.TypeOf()用来检查它的类型。不幸的是,没有代表 的常数reflect.Type。 intType := reflect.TypeOf(0)349 收藏
-
问题内容 如果函数发生恐慌(在 Go 中),我想从函数返回错误: func getReport(filename string) (rep report, err error) { rep.data = make(map[string]float64) defer func() { if r := recover(); r != nil {170 收藏
-
问题内容 我想在 Go中将日期格式转换为2010-01-23 11:44:20to 。Jan 23 '10 at 11:44我尝试了time包中的一些功能,但无法实现。 有人可以帮我解决这个问题吗? 正确答案 您可以使用时间包Parse并214 收藏
-
问题内容 我想在结构上定义一个方法来验证 http 请求。但我在访问结构字段时遇到了一些问题。 有我的代码。 package main import "log" type ReqAbstract struct{} func (r *ReqAbstract) Validate() erro403 收藏
-
问题内容 Go 的sync包有一个Mutex. 不幸的是它不是递归的。在 Go 中实现递归锁的最佳方法是什么? 正确答案 很抱歉没有直接回答你的问题: 恕我直言,如何在 Go 中实现递归锁的最佳方373 收藏
-
问题内容 .go在用 Go 写了一些脚本之后,我问自己编译一个-file 和后面的执行以及go run FILE.go命令在性能等方面是否有任何区别。 如果我使用其中一种方法启动 Web 服务有什么好处吗?457 收藏
-
问题内容 Go 的 time 包声称可以提供纳秒级的精度。 http://golang.org/src/pkg/time/time.go 我想知道它是如何实现的,我是否可以信任它。我的疑虑来自 Python,它清楚地记录了它随着时间的推移而遇498 收藏
-
问题内容 我今天在 go 代码中遇到了奇怪的行为:当我追加elements到slicein 循环然后尝试slices根据循环的结果创建新的时,lastappend覆盖slices从 previous appends。 在这个特定的例子中,这意味着sl330 收藏
-
问题内容 当前的 Go 库不提供队列容器。为了实现一个简单的队列,我使用圆形数组作为底层数据结构。它遵循TAOCP中提到的算法: Insert Y into queue X: X[R]<-Y; R<-(R+1)%M; if R=F then OVERFLOW. Dele270 收藏
-
问题内容 我正在用 Go 编写一个应用程序,它使用编码/gob 在节点之间通过 UDP 发送结构和切片。它工作正常,但我注意到 encoding/json 也有类似的 API。搜索并找到此信息(https://golang.org/pkg/enc177 收藏
-
问题内容 给定以下 Go 代码示例: package main import "fmt" type greeter interface { hello() goodbye() } type tourGuide struct { name string } func (t tourGuide) hello() { fmt.Println("Hello", t.nam365 收藏
-
问题内容 package main import ( "net/http" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request){ w.Write([]byte("hello world")) }) http.ListenAndServe(":800204 收藏