Go语言中文网 为您找到相关结果 3

go语言 类型:基础类型和复合类型

Go 语言中包括以下内置基础类型:布尔型:bool整型:int int64 int32 int16 int8 uint8(byte) uint16 uint32 uint64 uint浮点型:float32 float64复数型:complex64 complex128字符串:string字符型:rune错误型:error Go 语言中包括以下内置复合类型: 数组:array切片:slice指针:pointer字典:map通道:chan结构体:struct接口:interfac...阅读全文

博文 2015-10-09 11:00:11 osfipin

用 Go 编写的类 Ruby 语言Rooby

Rooby 是一种面向对象的语言,可以看作是 Go 和 Ruby 的结合体,旨在实现高效微服务开发。 Can be compiled into bytecode (with `.robc` extension) Can evaluate bytecode directly Everything is object Support comment Object and Class Top level main object Constructor Support class method Support inheritance Support instance variable Support self Variables Constant Local vari...阅读全文

关于 Golang defer 的使用规则和案例

golang defer 这个使用的执行流程一直很绕,所以决定写一篇文记录一下。 规则一:当defer被声明时,其参数就会被实时解析 案例一 package main import ( "fmt" ) func main() { test() } func test() { defer f1(f2()) fmt.Println("2") return } func f1(i int) int { return i } func f2() int { fmt.Println("1") return 1 } 输出:12 案例二 package main import ( "fmt" ) func main() { defer getFunc()() fmt.Println("2") } func...阅读全文

博文 2020-04-21 17:35:16 DukeAnn