📌  相关文章
📜  go 值和引用类型 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:45:01.227000             🧑  作者: Mango

代码示例1
// Values types: you should care about pointers
// Refenerce types: you don't care about pointers

value types: int, float, string, bool, struct
reference types: slice, map, channel, pointer, function