英文: Golang Regular Expressions - what am I doing incorrectly? 问题 作为一个个人项目,我试图通过将其应用于某些东西来学习Go(lang),...
如何在Go中实现HashCash算法(类型转换问题)?
英文: How to implement the algorithm for HashCash in Go (type conversion issues)? 问题 我一直在尝试在Go中实现HashC...
Go中的不良正则表达式
英文: Poor regular expressions in Go 问题 为什么Go语言中的regexp包不支持像样的正则表达式?例如,截至Go r60.3版本,字符类\w和\s尚未实现。此外,(?...
如何使net.Read在golang中等待输入?
英文: How can I make net.Read wait for input in golang? 问题 所以我正在用Go为我的电梯制作一个服务器,并且我正在使用TCP连接作为一个gorout...
When writing a single package meant to be used as a command, which is idiomatic: name all identifiers as private or name all identifiers as public?
英文: When writing a single package meant to be used as a command, which is idiomatic: name all identi...
在Go中管理会话
英文: Managing sessions in Go 问题 有一些用于会话的Go库吗? 在使用Python/Django时没有任何问题。 我对Go还不熟悉,也没有找到相关的信息。所以,Go是否有通用...
From io.Reader to string in Go
英文: From io.Reader to string in Go 问题 我有一个io.ReadCloser对象(来自一个http.Response对象)。 将整个流转换为string对象的最有效的...
如何在最新的Go周刊中比较两个函数的指针相等性?
英文: How do I compare two functions for pointer equality in the latest Go weekly? 问题 在Go语言中,有没有办法比较两个...
加速使用Go的问题
英文: Speedup problems with go 问题 我用Go语言编写了一个非常简单的程序来测试并行程序的性能。我编写了一个非常简单的程序,通过除法试验来分解一个大的半素数。由于没有涉及通信...
语法错误:意外的分号或换行符,期望 }
英文: syntax error: unexpected semicolon or newline, expecting } 问题 我有一个示例代码,在其中定义了一个数组,但它无法编译: $ cat ...
11727