Golang : automatically figure out array length(size) with three dots
In Go, you can specify a length(size) of an array either explicitly or implicitly(i.e let the compiler figure out) with the three dots [...]
.
However, before we proceed further, it is good to know the tiny difference between array and slice.
Arrays length are fixed during run time. Slices are not bounded by their length and values from one slice can be passed to another even when their lengths are different.
These are ARRAYS
// Explicit length. You specified it
var days := [7]string { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" }
// Implicit length with the three dots. (Compiler will determine the length)
var days := [...]string { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" }
This is a SLICE
var days := []string { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" }
The three dots [...] can be useful in situation when you wanted to create an array based on content from files or streams, but do not know the length until run time.
Hope this simple tutorial can be useful to you.
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 : Secure file deletion with wipe example
+6.3k Golang : Extract XML attribute data with attr field tag example
+22.3k Golang : Print leading(padding) zero or spaces in fmt.Printf?
+5.9k Golang : Launching your executable inside a console under Linux
+21k Golang : Convert PNG transparent background image to JPG or JPEG image
+9.6k Android Studio : Indicate progression with ProgressBar example
+11.7k SSL : The certificate is not trusted because no issuer chain was provided
+30.5k Golang : How to verify uploaded file is image or allowed file types
+23.1k Golang : Calculate time different
+7k Mac/Linux/Windows : Get CPU information from command line
+26.8k Golang : How to check if a connection to database is still alive ?
+19.5k Golang : Get host name or domain name from IP address