How to declare a pointer to a method in Go

I am trying to create a function pointer that has a method receiver. However, I can't figure out how to get it to work (if possible)?

Essentially, I have the following:

type Foo struct {...}
func (T Foo) Bar bool {
   ... 
}

type BarFunc (Foo) func() bool // Does not work.

      

The last line of code gives an error

syntax error: unexpected func, expecting semicolon or newline

      

+3


source to share


2 answers


If you want to create a pointer to a method, you have two ways. The first essentially turns a method with two arguments into a function with one:

type Summable int

func (s Summable) Add(n int) int {
    return s+n
}

var f func(s Summable, n int) int = (Summable).Add

// ...
fmt.Println(f(1, 2))

      

The second way will "bind" the function to the method receiver:



s := Summable(1)
var f func(n int) int = s.Add
fmt.Println(f(2))

      

Playground: http://play.golang.org/p/ctovxsFV2z .

+8


source


And for an example more familiar to those of us used to typedef

in C for function pointers:

package main

import "fmt"

type DyadicMath func (int, int) int  // your function pointer type

func doAdd(one int, two int) (ret int) {
    ret = one + two;
    return
}

func Work(input []int, addthis int, workfunc DyadicMath) {
    for _, val := range input {
        fmt.Println("--> ",workfunc(val, addthis))
    }
}

func main() {
    stuff := []int{ 1,2,3,4,5 }
    Work(stuff,10,doAdd)

    doMult := func (one int, two int) (ret int) {
        ret = one * two;
        return
    }   
    Work(stuff,10,doMult)

}

      



https://play.golang.org/p/G5xzJXLexc

+1


source







All Articles