type X struct { author string age int }
X{ author: "some author", }
为什么我没有收到类似“嘿,你错过了为 age 设置值”的错误,这是一个功能/错过的规则吗?
未明确初始值声明的变量将被赋予零值。