Posted 2020-02-27Updated 2026-01-30 Jaco Liu golang / tutoriala minute read (About 161 words)Go:方法值(func value) 和 方法表达式(func expression)方法值(func value) & 方法表达式(func expression)依据函数或方法具备两大特点:1.函数本身是一种类型 T;2.函数变量:函数或方法本身储存在变量中;Read more
Posted 2020-02-27Updated 2026-02-08 Jaco Liu golang / tutorial5 minutes read (About 810 words)Go:func 函数func 函数func 函数(适用于 method)小结Go 函数数也是一种类型,可以和其他类型一样被保存在变量中。和接口一样,接口也是一种类型。Read more
Posted 2020-02-27Updated 2026-01-30 Jaco Liu golang / tutorial6 minutes read (About 905 words)Go tool pprof 性能监控调试工具基本使用说明Go tool pprof 使用方式go 中有 pprof 包来做代码的性能监控主要涉及两个 pkg:Read more
Posted 2020-02-27Updated 2026-01-30 Jaco Liu golang / tutorial7 minutes read (About 1039 words)Go:fmt.Printf() 格式化占位符fmt.Printf() 格式化占位符格式符 fmt.Printf("%v", variable)Read more
Posted 2020-02-25Updated 2026-01-30 Jaco Liu golang / tutoriala few seconds read (About 86 words)Jaco Liu Golang personal summary combing notesJaco Liu Golang personal summary combing notesJaco Liu Golang personal summary notes GoJaco Liu contactItemContactAuthorJaco LiuEmailljqlab@163.comWeChatlaulinuxQQ404691073Bloghttps://www.wdft.comRead more
2026-09-06Golang 少用 Interface 的哲学:奥卡姆剃刀下的工程实践,删掉不必要的Interfacegolang / tutorial / Go-Interface / Occam-Razor