摘要:
for语句 for 赋值表达式; 关系表达式或逻辑表达式; 赋值表达式 { } for i := 0; i < 10; i++ { } for 关系表达式或逻辑表达式 { } n := 10 for n > 0 { n-- } for { } for { fmt.Println("hello wor 阅读全文
摘要:
我们首先来了解一下Go语言中string类型的结构定义,先来看一下官方定义: // string is the set of all strings of 8-bit bytes, conventionally but not// necessarily representing UTF-8-enc 阅读全文
摘要:
参考文档: Ceph Block Device:http://docs.ceph.com/docs/master/rbd/ CEPH ISCSI GATEWAY:http://docs.ceph.com/docs/master/rbd/iscsi-overview/ USING AN ISCSI G 阅读全文