"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > Why Use a Pointer for WaitGroup.Done but Not for WaitGroup.Add and WaitGroup.Wait?

Why Use a Pointer for WaitGroup.Done but Not for WaitGroup.Add and WaitGroup.Wait?

Posted on 2025-02-06
Browse:282

Why Use a Pointer for WaitGroup.Done but Not for WaitGroup.Add and WaitGroup.Wait?

Pointers and Variables in WaitGroups Reference

In the sync package, the functions Add, Done, and Wait are all called by a pointer to a WaitGroup:

  • Add increments the wait count by the given delta.
  • Done decrements the wait count.
  • Wait blocks until the wait count is zero.

In the provided code snippet, the Done function is called using a pointer variable, while the Add and Wait functions are called using a variable (not a pointer).

However, all three functions are called on the same WaitGroup value.

  • The wg variable is declared as a value of sync.WaitGroup, but the Add, Done, and Wait methods are called on the address of wg (wg) using the dereference operator ().
  • This means that all three functions are operating on the same underlying WaitGroup value.
  • The only difference is that Done is called on the address of wg to ensure that the correct WaitGroup value is being modified.
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3