Golang : Defer function inside init()
Putting this short note down for those intending to use defer function inside init(). IF you put a defer function inside the init() block, the deferred function will be executed regardless and not deferred. This is because the init() function role is to repair correctness or prepare the environment variables within the source file before executing other function or to be precise... the main() function block.
From the official documentation, https://golang.org/doc/effective_go.html#init :
"a common use of init functions is to verify or repair correctness of the program state before real execution begins."
The keyword is BEFORE
Reference :
See also : Golang : When to use init() function?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.9k Golang : Simple client-server HMAC authentication without SSL example
+5.7k PHP : Get client IP address
+6.6k Nginx : Password protect a directory/folder
+5.8k Linux/MacOSX : Search for files by filename and extension with find command
+18.3k Golang : Implement getters and setters
+9.3k Golang : Validate IPv6 example
+14.7k Golang : package is not in GOROOT during compilation
+11.8k Golang : Save webcamera frames to video file
+11.1k Golang : Concatenate (combine) buffer data example
+18.6k Golang : Check whether a network interface is up on your machine
+9.4k Golang : Eroding and dilating image with OpenCV example