golang接口实现时-值接收者和指针接收者的区别

2020-04-29  本文已影响0人  韩小禹
package main

import (
    "fmt"
)

type notifier interface{
    notify()
}

type user struct{
    name string
    email string
}

func (u *user) notify(){
    fmt.Printf("sending user email to %s<%s>\n", u.name, u.email)
}

func sendNotification(n notifier){
    n.notify()
}


func main(){
    u := user{"ethan","xxx@xx.com"}
    sendNotification(u)     //错误
    //sendNotification(&u)     //正确
}

上面的代码为notifier接口的实现,看似正常但是编译无法通过,报错信息是

 cannot use u (type user) as type notifier in argument to sendNotification:
        user does not implement notifier (notify method has pointer receiver)

之所以会报错是因为代码中使用指针实现了接口(func (u *user) notify()), 但是调用sendNotification方法时传入的参数为值,并不是值的地址,或者说并不是指针。所以会报错。golang中说<b>“方法集定义了一组关联到给定类型的值或者指针的方法。定义方法时使用的接受者的类型决定了这个方法是关联到值还是关联到指针。”</b>

方法接收者
T (t T)
*T (t T) and (t *T)
方法接收者
(t T) (t T) and (t *T)
(t *T) (t *T)

上一篇下一篇

猜你喜欢

热点阅读