golang 内置函数new() 和struct{} 初始化的区别

happinessaflower ·
``` type st struct{} func main() { a := new(st) b := &(st{}) fmt.Println(a,b) } ``` ``` &{} &{} ```
#1