Golang : Variadic function arguments sanity check example
Problem:
Golang is cool and you love to use variadic function frequently. You have a variadic function such as a totalizer functions that accept any number of arguments. Such as
func variadicFunction(arguments ...int) {}
Somehow a user of your program or variadic function managed to sneak in a null/nil or empty argument. This caused your variadic function to go crazy.
How to prevent this from happening?
Solution:
You want to perform sanity check on your users and their input arguments first before processing further. For example :
package main
import "fmt"
func totalizer(values ...int) {
if values == nil {
fmt.Println("boom! - no number in arguments")
//panic("kaboom") -- if you choose to kill the program
} else {
fmt.Print(values, " ")
total := 0
for _, value := range values {
total += value
}
fmt.Println(total)
}
}
func main() {
totalizer(2)
totalizer(1, 2, 3)
totalizer()
}
Output:
[2] 2
[1 2 3] 6
boom! - no values given in arguments
Happy coding and don't let your user bomb your program!
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
+7.9k Setting $GOPATH environment variable for Unix/Linux and Windows
+46.4k Golang : Encode image to base64 example
+14.5k Golang : Missing Bazaar command
+16.8k Golang : Set up source IP address before making HTTP request
+9k Golang : How to use Gorilla webtoolkit context package properly
+6.2k Golang & Javascript : How to save cropped image to file on server
+5k Golang : Display packages names during compilation
+13.5k Golang : Get user input until a command or receive a word to stop
+18.2k Golang : Get path name to current directory or folder
+10.8k Golang : Sieve of Eratosthenes algorithm
+6.9k Golang : How to solve "too many .rsrc sections" error?
+20.6k Golang : Saving private and public key to files