发布时间:2014-06-17 20:37:47
1. 两个不同类型的整型数不能直接比较,但各种类型的整型变量都可以直接与字面常量(literal)进行比较。2. ^x 取反操作3. 浮点数比较:因为浮点数不是一种精确的表达方式,所以像整型那样直接用==来判断两个浮点数是否相等是不可行的,这可能会导致不稳定的结果。import "math"//p 为用户自定义的比较精度,比.........【阅读全文】
发布时间:2014-06-10 19:48:54
对于并发的协程,需要做两件事:1. 不同协程间数据传递;2. 协程同步。这两个事情都可以通过 channel 搞定。......【阅读全文】
发布时间:2014-04-14 11:24:58
GOPATH and workspacesOne of Go's design goals is to make writing software easier. To that end, the go command doesn't use Makefiles or other configuration files to guide program construction. Instead, it uses the source code to find dependencies and determine build conditions. T.........【阅读全文】