• 多态函数


    // 多态
    // 示例
    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>
    ", u.name, u.email)
    }
    type admin struct{
        name string
        email string
    }
    func (a *admin) notify(){
        fmt.Printf("Sending admin email to %s<%s>
    ", a.name, a.email)
    }
    // 多态函数,不同实例类型调用相同方法返回不同实例的结果
    func sendNotification(n notifier){
        n.notify()
    }
    
    func main(){
        bill := user{"Bill", "bill@email.com"}
        sendNotification(&bill) // 传地址
        
        lisa := admin{"Lisa", "lisa@email.com"}
        sendNotification(&lisa) // 传地址
    }
    

    -------------------------------------------

    个性签名:代码过万,键盘敲烂!!!

    如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!

  • 相关阅读:
    iOS 的 XMPPFramework 简介
    Swift闭包
    Objective-C类成员变量深度剖析
    iOS Auto Layout
    iOS WIFI
    AppStore提审攻略
    iOS7 修改导航系统默认返回按钮文字及颜色
    iOS Block浅析
    Latency
    Charles抓包工具的使用
  • 原文地址:https://www.cnblogs.com/weiweivip666/p/15480707.html
Copyright © 2020-2023  润新知