golang
已收录文章:1794篇
-
问题内容 有没有什么类似于slice.contains(object)Go 中的方法而无需搜索切片中的每个元素? 正确答案 Mostafa 已经指出这样的方法写起来很简单,mkb 给了你一个使用 sort 包中的二进制搜索295 收藏
-
问题内容 我有一个项目目前组织这样的事情: 〜/代码/去 /bin /包 /src /proj/main.go /some_package/package.go /some_other_package/some_other_package.go469 收藏
-
问题内容 就我而言,我有数千个 goroutines 同时作为work(). 我也有一个sync()goroutine。启动时sync,我需要任何其他 goroutine 在同步作业完成后暂停一段时间。这是我的代码: var channels []chan int va455 收藏
-
问题内容 我对在 Go 中通过引用和值传递有点困惑。 我已经看到了对类型前面的 * 的解释。 在类型名称前面,意味着声明的变量将存储该类型的另一个变量的地址(不是该类型的值)。466 收藏
-
问题内容 假设我有一些这样的代码: value, err := some3rdpartylib.DoSomething() if err != nil { panic(err) } 万一err != nil我会得到这样的东西: panic: some error explanation here goroutine 1 [running]: main.main()412 收藏
-
问题内容 Decorator pattern (functions) has many benefits: It is very useful when a method has many orthogonal concerns... I.e., None of these concerns are related, other than that we wanna do all (or some) of them whenever we call our method. T190 收藏
-
问题内容 使用 Go (golang) 我想使用一个带有公式的字符串并使用预定义的值对其进行评估。这是使用pythonparser模块的一种方法: x = 8 code = parser.expr("(x + 2) / 10").compile() print eval(code) # p360 收藏
-
问题内容 如何在 Golang 中打印(到控制台)这个结构的 , ,Id等Title?Name type Project struct { Id int64 `json:"project_id"` Title string `json:"title"` Name string `json:"name&q134 收藏
-
问题内容 Go 文档有以下 http 包的示例: http.Handle("/foo", fooHandler) http.HandleFunc("/bar", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path))324 收藏
-
问题内容 我偶然发现了一个奇怪的问题,即下面的代码无法编译: func main() { var val reflect.Value var tm time.Time if tm, err := time.Parse(time.RFC3339, "2018-09-11T17:50:54.247Z"); err != nil {265 收藏
-
问题内容 正如 RabbitMQ 文档中提到的那样,建立 tcp 连接的成本很高。因此,引入了渠道的概念。现在我遇到了这个[例子](https://www.rabbitmq.com/tutorials/tutorial- four-go.html)。每次发布消息时,main285 收藏
-
问题内容 我希望在一个语句中更新 PostgreSQL 和 Go 中的多行。有没有办法做类似下面的事情? UPDATE table SET column_a = "FINISH", column_b = 1234 WHERE id = '1', column_a = "UNFINISH",466 收藏