On Mon, Feb 10, 2020 at 9:58 PM Alexander Mills <alexander.d.mi...@gmail.com> wrote:
> we can do this: > > var wg sync.WaitGroup > > > instead of having to write this: > > var wg sync.WaitGroup = sync.WaitGroup{} // is this initialization implicit, > and why? > > > > anyone know why, or what it's called? Is this intialization implicit / > automatic and what is the reasoning for this? > The two are equivalent due to implicit initialization of vars to their "zero" value. See https://yourbasic.org/golang/default-zero-value/ for one of many explanations of this topic. I'll leave it to others to opine whether the implicit initialization is good style or whether the explicit initialization in your second example is preferable. Having said that, I don't see any reason to prefer the explicit initialization since it is 100% equivalent to the implicit initialization and thus redundant. -- Kurtis Rader Caretaker of the exceptional canines Junior and Hank -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/CABx2%3DD8cxhQSmTq2r8c6qoqtWpZdLD-VykO7y4uN7bd1V3cydw%40mail.gmail.com.