Home > Backend Development > Golang > How Can I Use String Function Names to Call Functions Dynamically in Go?

How Can I Use String Function Names to Call Functions Dynamically in Go?

DDD
Release: 2024-12-05 17:05:12
Original
409 people have browsed it

How Can I Use String Function Names to Call Functions Dynamically in Go?

Using Function Pointers with String Function Names in Go

In Go, it's possible to retrieve a function pointer from a function's name provided as a string. This capability is valuable in metaprogramming scenarios, such as dynamically invoking functions based on string parameters.

Unlike some dynamic languages, Go functions are first-class values. Therefore, you can directly pass functions as arguments to other functions. Consider the following example:

package main

import "fmt"

func someFunction1(a, b int) int { return a + b }
func someFunction2(a, b int) int { return a - b }

func someOtherFunction(a, b int, f func(int, int) int) int { return f(a, b) }

func main() {
    fmt.Println(someOtherFunction(111, 12, someFunction1))
    fmt.Println(someOtherFunction(111, 12, someFunction2))
}
Copy after login

Output:

123
99
Copy after login

In this example, someOtherFunction takes two integer arguments and a function pointer (the f parameter). It then invokes the provided function with the given arguments. The result is printed.

If the selection of the function depends on a value known only at runtime, you can use a map:

m := map[string]func(int, int) int{
    "someFunction1": someFunction1,
    "someFunction2": someFunction2,
}

...

z := someOtherFunction(x, y, m[key])
Copy after login

The above is the detailed content of How Can I Use String Function Names to Call Functions Dynamically in Go?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template