On Wed, Nov 23, 2016 at 12:09 PM, Nick Patavalis wrote:

> For this specific example, something like this: https://play.golang.org/p/
> FsorWRaLKk
>

Thanks a lot Nick!

I've simplified it a bit. Now it is:

func (d Dog) Output() {
// Presumably complicated stuff, not re-implemented
d.Animal.Output(d.IsA())
}

I'm wondering if it is possible to somehow pass d.Speak as a function
pointer to Animal.Output, so that inside Animal.Output, calling it will get
to the correct dog.Speak or cat.Speak? Here is the code to start from:

https://play.golang.org/p/cCmum-YRX9

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to