英文: Go equivalent of a void pointer in C 问题 我一直在尝试使用Go语言制作一些数据结构库,但是遇到了一个大问题。我希望数据结构能够容纳任何类型,但是在Go语言...
在C/C++中是否可能模仿Go的接口?
英文: Is it possible to mimic Go interface in C/C++? 问题 在Go语言中,如果类型拥有接口定义的所有方法,那么它可以被赋值给该接口变量,而无需显式地继承...
在Eclipse中运行Go测试
英文: Running Go tests in Eclipse 问题 我已经安装了eclipse和goclipse,一切都很好,我可以在IDE中运行控制台应用程序。在IDE中执行单元测试是否也是可能的...
HTTP包服务器在生产环境中使用安全吗?
英文: Is the HTTP package server safe to use in production? 问题 Go在其标准库中实现了FastCGI,以及一个本地的HTTP服务器。 在生产环...
如何忽略datastore.Query.GetAll()中的错误?
英文: How to ignore errors in datastore.Query.GetAll()? 问题 我刚刚开始使用Go运行时开发一个GAE应用程序,到目前为止一切顺利。然而,我遇到了以下...
Go – 二进制密码安全
英文: Go - password security in binary 问题 我打算在我的Go应用程序中保存一个密码/密钥,以便与其他应用程序进行通信。我想知道如何保护它,例如防止某人获取二进制文件...
Go,基本访问认证
英文: Go, basic access authentication 问题 谷歌Go支持解码基本访问认证调用吗?我如何从http.Request中获取用户名和密码? 英文: Does Google ...
Putting many PropertyList's into Google App Engine datastore (in Go) and loading them again with Query.GetAll
英文: Putting many PropertyList's into Google App Engine datastore (in Go) and loading them again ...
如何在Go中正确调用JSON-RPC?
英文: How to properly call JSON-RPC in Go? 问题 我一直在尝试不同的配置来调用Go中的一个简单的比特币JSON-RPC服务器,但是没有取得任何进展。 在Pytho...
如何访问作为vector.Vector一部分的结构字段?
英文: How do I access struct fields that are part of a vector.Vector? 问题 我正在寻求帮助,了解如何访问包含在container.ve...
11727