// new make的区别
	// new 主要是初始化基础类型 比如 string bool .... 以及自定义类型,返回的是指针
	// make 主要是初始化slice/map/channel类型,返回的是对应的类型。

相关文章: