Shitaibin / shitaibin.github.io

博客:Go语言、区块链
http://lessisbetter.site
67 stars 21 forks source link

Go高级实践:反射3定律 | Go语言充电站 #79

Open Shitaibin opened 4 years ago

Shitaibin commented 4 years ago

http://lessisbetter.site/2019/02/24/go-law-of-reflect/

各位学习Go语言的朋友,周末好,这次跟大家聊一聊Go语言的一个高级话题:反射。 这篇文章是从我过去的学习笔记修改来的,内容主要来自Go Blog的一篇文章《The law of reflection》。 这篇文章主要介绍反射和接口的关系,解释内在的关系和原理。 反射来自元编程,指通过类型检查变量本身数据结构的方式,只有部分编程语言支持反射。 类型反射构建在类型系统之上,Go是静态类型语言,每一个变

Shitaibin commented 4 years ago

x