Golang设计模式之代理模式

前端之家收集整理的这篇文章主要介绍了Golang设计模式之代理模式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 概述

代理模式,简单来说就是提供一个对象来控制其他对象的功能。在一些情况下,一个Object不适合直接引用目标对象,但可以通过代理对象调用目标对象,起到中介代理的作用。

相关源代码demo在Github上,可供参考!

2. 实现示例

那个简单的例子,中介代理各业主的房子。每个业主都有个卖房的函数。中介代理的相关实现如下:

//被代理的公共函数
//
type ProxyFuncs interface {
    //卖房功能
    SailHouse()
}

type MasterBeijing struct {
    Name     string //北京业主姓名
        Location string //业主所卖房屋的位置
}

func (this *MasterBeijing) SailHouse() {
    fmt.Printf("%s sailing house at %s\n",this.Name,this.Location)
}

type Proxier struct {
    Mofbj *MasterBeijing
}

func (this *Proxier) SailHouse() {
    if this.Mofbj == nil {
        this.Mofbj = &MasterBeijing{}
    }

    this.Mofbj.SailHouse()
}

3. 使用

m := &MasterBeijing{
        Name:     "Lao wang",Location: "Xi Cheng",}   

    proxier := &Proxier{
        Mofbj: m,}   

    proxier.SailHouse()
原文链接:https://www.f2er.com/go/187810.html

猜你在找的Go相关文章