美文网首页
golang接口实现时-值接收者和指针接收者的区别

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

作者: 韩小禹 | 来源:发表于2020-04-29 10:27 被阅读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) (t T) and (t *T)
(t *T) (t *T)

  • 通过《go语言实战》中第五章的5.4节“接口”学习到以上接口实现的细节,记录一下学习笔记。

相关文章

网友评论

      本文标题:golang接口实现时-值接收者和指针接收者的区别

      本文链接:https://www.haomeiwen.com/subject/llkvwhtx.html