英文: Get length to decoding Ascii85 问题 ascii85有一个函数可以获取编码的最大长度MaxEncodedLen()。 我认为它也应该有一个函数来获取解码的长度,就...
如何访问传递给Go程序的命令行参数?
英文: How to access command-line arguments passed to a Go program? 问题 我如何在Go中访问命令行参数?它们不作为参数传递给main函数。...
为什么Go语言相对于Java来说速度很慢?
英文: Why is Go so slow (compared to Java)? 问题 从The Computer Language Benchmarks Game中我们可以看到,2010年的情况是...
在Go语言中将字符串转换为整数
英文: int from string in go 问题 什么是从字符串创建整数值的函数? i := strconv.Atoi("10") 英文: What's the funct...
Go – 加密/随机数的示例
英文: Go - Example about crypto/rand 问题 可以给一个关于crypto/rand的使用的小例子吗? 函数Read的参数是一个字节数组。为什么?因为它访问*/dev/ur...
Go – 验证的数据类型
英文: Go - Data types for validation 问题 如何为Go创建一个新的数据类型,在创建新变量(该类型的变量)时可以检查/验证其模式? 例如,要验证字符串是否有20个字符,我...
将Java应用程序移植到Go语言 – 有什么建议吗?
英文: Porting Java app to Go - any advice? 问题 我们想用Go重写kodingen.com的后端,目前是用Java编写的,作为守护进程运行,使用jsvc。 我从未...
Go语言中的Cassandra数据存储客户端
英文: Cassandra datastore client in Go language 问题 在Go语言中编写Cassandra数据存储的客户端是否可行? 英文: Is it possible t...
不论关键字
英文: notwithstanding keyword 问题 notwithstanding关键字在Google Go中的含义是什么? 英文: What does the notwithstandin...
谷歌的’go’和作用域/函数
英文: Google's 'go' and scope/functions 问题 在golang.org给出的一个示例服务器中: package main import ( &...
2905