Golang : Function as an argument type example
When we need to invoke another function inside a.... let's say outer function, the typical way to do this is to call the desire function inside the outer function. For example, fmt.Sprintf()
:
func int2str(i int) string {
str := fmt.Sprintf("%d", i)
}
In Golang, we are allowed to pass a function as an argument of another function. This can be illustrated by comparing the differences between these two simple programs.
Program 1:
package main
import (
"fmt"
"strconv"
)
func OuterFunc(a int, b int) string {
c := a + b
return strconv.Itoa(c)
}
func main() {
result := OuterFunc(1, 2)
fmt.Println(result)
}
versus
Program 2:
package main
import (
"fmt"
"strconv"
)
var a string = "1"
func OuterFunc(strToInt func(s string) int, b int) string {
c := strToInt(a) + b
return strconv.Itoa(c)
}
func main() {
strToInt := func(s string) int {
num, _ := strconv.Atoi(s)
return num
}
result := OuterFunc(strToInt, 2)
fmt.Println(result)
}
Both programs will produce the same output.
This is also known as anonymous function and you can read a better example at https://gobyexample.com/closures
Now, why use a function as an argument of another function?
The motivation behind this ability is to allow you to specify and pass logic(algorithm) to another function. This is a powerful feature to have in programming language. One clear example that I can think of is how bytes.Map()
function uses this feature to handle the mapping function.
Code from https://www.socketloop.com/references/golang-bytes-map-function-example
package main
import (
"bytes"
"fmt"
)
func main() {
str := []byte("abcxefg")
mapping := func(replacekey rune) rune {
if replacekey == 'x' {
return 'd'
}
return replacekey
}
fmt.Println(string(str))
// now replace x with d
fmt.Println(string(bytes.Map(mapping, str)))
}
Output:
abcxefg
abcdefg
To see the inner working of how bytes.Map()
function works, check out https://golang.org/src/bytes/bytes.go?s=8894:8946#L347
To know more about how Golang treat functions, please read this article - "First Class Functions in Go" by Andrew Gerrand.
Happy coding!
References:
https://golang.org/pkg/bytes/#Map
https://www.socketloop.com/references/golang-bytes-map-function-example
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
+4.2k Linux/MacOSX : Search and delete files by extension
+7.1k Golang : Calculate how many weeks left to go in a given year
+11k Use systeminfo to find out installed Windows Hotfix(s) or updates
+24.7k Golang : Create PDF file from HTML file
+5.2k Golang : What is StructTag and how to get StructTag's value?
+17.5k Golang : How to make a file read only and set it to writable again?
+18.7k Golang : When to use public and private identifier(variable) and how to make the identifier public or private?
+18.1k Golang : Aligning strings to right, left and center with fill example
+13.5k Golang : Check if an integer is negative or positive
+8k Golang : Reverse text lines or flip line order example
+11.7k Golang : How to parse plain email text and process email header?
+50.5k Golang : Disable security check for HTTPS(SSL) with bad or expired certificate