Posted 2020-02-27Updated 2025-10-31 Jaco Liu Go5 minutes read (About 811 words)Go:func 函数func 函数func函数(适用于method)小结Go函数数也是一种类型,可以和其他类型一样被保存在变量中。和接口一样,接口也是一种类型。12345678910111213package mainimport ( "fmt")func foo() { fmt.Println("foo")}func main() { var f func() f = foo f()}Read more
2025-12-03Discussion and analysis of Text2SQL technology, the most difficult pain point in the commercial implementation of agents.(Agent商业落地里最难的痛点Text2SQL技术探讨和解析)AI / Agent
2025-12-02Ultimate Guide to Quantizing AI Large Language Models: From FP32 to INT4, How to Make Large Models Perform at Full Speed on Consumer Devices?(AI大语言模型量化终极指南:从FP32到INT4,如何让大模型在消费级设备部署应用及选型?)AI / Agent