I would like to understand the interface type with a simple example of it's use in Go (Language).

I read the documentation, but I don't get it.

link|improve this question
Did you read this in the docs?? golang.org/doc/effective_go.html#interfaces_and_types. Also try this one diveintogo.blogspot.com/2010/03/… – Justin Aug 12 '11 at 17:11
Yup, I read the docs... Thanks for the links – Speccy Aug 13 '11 at 3:44
feedback

1 Answer

up vote 6 down vote accepted

The idea behind go interfaces is duck typing. Which simply translates into: If you look like a duck and quack like a duck then you are a duck. Meaning that if your object implements all duck's features then there should be no problem using it as a duck. Here is an example:

package main

import (
    "fmt"
)

type Walker interface {
    Walk() string
}

type Human string
type Dog string

func (human Human) Walk() string { //A human is a walker
    return "I'm a man and I walked!"
}

func (dog Dog) Walk() string { //A dog is a walker
    return "I'm a dog and I walked!"
}

//Make a walker walk
func MakeWalk(w Walker) {
    fmt.Println(w.Walk())
}

func main() {
    var human Human
    var dog Dog
    MakeWalk(human)
    MakeWalk(dog)
}

Here a Human is a Walker and a Dog is a Walker. Why? Because they both.. well... Walk. They both implement the Walk () string function. So this is why you can execute MakeWalk on them.

This is very helpful when you want different types to behave in the same manner. A practical example would be file type objects (sockets, file objects) - you need a Write and a Read function on all of them. Then you can use Write and Read in the same fashion independent of their type - which is cool.

link|improve this answer
Thanks! This is really what I wanted to know. Much clearer than in the go tutorial. – Speccy Aug 13 '11 at 3:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.