Golang : Null and nil value
Programmers coming from different programming languages to Golang might wonder how does one deal with NULL values. I put down these reminders below about NULL value for myself and maybe this can be useful to you as well.
Here you go :
Golang does not support NULL.
Nil is the equivalent of NULL in Golang.
All variables by default are initiated with the nil(zero) value.
Example usage of nil :
correctHash := sha1.New() fmt.Printf("%x \n", correctHash.Sum(nil))
Function returning nil will NOT compile,
// not OK func getName() string { return nil }
but returning nil to a pointer or reference (such as a struct) is ok and will compile.
type Person struct { name string } // OK func getName() *Person { return nil }
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
+14.1k Golang : Send email with attachment(RFC2822) using Gmail API example
+13.1k Golang : Get constant name from value
+9.6k Golang : Check if user agent is a robot or crawler example
+22.1k Golang : How to read JPG(JPEG), GIF and PNG files ?
+6.6k Get Facebook friends working in same company
+6.6k Swift : substringWithRange() function example
+4.2k Golang : Valued expressions and functions example
+6.6k Golang : Muxing with Martini example
+5.4k Javascript : How to refresh page with JQuery ?
+11k Use systeminfo to find out installed Windows Hotfix(s) or updates
+5.1k Unix/Linux/MacOSx : How to remove an environment variable ?
+9.5k Golang : ffmpeg with os/exec.Command() returns non-zero status