一个包中的函数,方法,全局变量,全局常量以大写字母开头,可以导出,否则不可以导出。导出的意思是在包外可以访问到。
Go语言在1.4版本后加入了internal包。在工程目录中,internal包中的内容对internal所在的父级包
和父级包的所有子包
是可见的,即可以引用。
在本项目中父级之外的包中引入internal包会在编译时报错:
use of internal package xxxxxxxxxx/internal not allowed
在项目中引入其他项目的internal包也会在编译时报错
An import of a path containing the element “internal” is disallowed if the importing code is outside the tree rooted at the parent of the "internal" directory.
项目布局可以参照Go社区比较认可的点我,点我,你点我呀,非官方内容