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

韩小禹 · · 2316 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

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接口实现时-值接收者和指针接收者的区别

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2316 次点击  
加入收藏 微博
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传