Objective-C設計模式——中介者Mediator(對象去耦)

來源:互聯網
上載者:User

標籤:

中介者模式

中介者模式很好的詮釋了迪米特法則,任意兩個不相關的對象之間如果需要關聯,那麼需要通過第三個類來進行。中介者就是把一組對象進行封裝,屏蔽了類之間的互動細節,使不同的類直接不需要持有對方引用也可以進行訪問。

中介者Mediator會持有同事類(就是需要處理互動邏輯的對象)Colleague的引用,同時每個colleague也會持有Mediator一份引用。這樣colleague如果有任何和別的類互動的請求就會發給Mediator,對改組對象進行瞭解耦合。其實我們平時經常寫的視圖控制器本身就是一個中介中,它來控制著不同對象之間的互動行為。

 

應用情境

對象間互動雖然定義明確然而非常複雜,導致一組對象彼此相互依賴而且難以理解;

因為對象引用了許多其他對象並與其通訊,導致對象難以複用;

想要定製一個分布在多個類中的邏輯或行為,又不想產生太多子類。

 

中介者的優缺點

優點

Mediator出現減少了各個Colleague的耦合,使得可以獨立地改變和複用各個Colleague類和Mediator,由於把對象如何寫作進行了抽象,將中介者作為一個獨立的概念並將其封裝在一個對象中,這樣關注的對象就從對象各自本身的行為轉移到它們之間的互動上,也就是站在一個更宏觀的角度去看待系統。

缺點

由於ConcreteMediator控制了集中化,於是就把互動複雜性變為了中介者的複雜性,這就使得中介者會變得比任何一個ConcreteColleague都複雜。

 

Demo

Colleague

#import <Foundation/Foundation.h>@class Mediator;@interface Colleague : NSObject@property (nonatomic, weak) Mediator* mediator;-(instancetype)initWithMediator:(Mediator *)mediator;-(void)notifyAnother;-(void)notified:(NSString *)message;@end#import "Colleague.h"#import "Mediator.h"@implementation Colleague-(instancetype)initWithMediator:(Mediator *)mediator{    self = [super init];    if(self)    {        _mediator = mediator;    }    return self;}-(void)notified:(NSString *)message{    NSLog(@"%@",message);}-(void)notifyAnother{    [self.mediator notify:self];}@end#import "Colleague.h"@interface ConcreteColleagueA : Colleague@end#import "ConcreteColleagueA.h"@implementation ConcreteColleagueA@end#import "Colleague.h"@interface ConcreteColleagueB : Colleague@end#import "ConcreteColleagueB.h"@implementation ConcreteColleagueB@end

在OC中為了避免引用迴圈,所以Colleague的Mediator對象修飾符用weak

 

Mediator

#import <Foundation/Foundation.h>#import "ConcreteColleagueA.h"#import "ConcreteColleagueB.h"@interface Mediator : NSObject@property (nonatomic ,strong) ConcreteColleagueA *colleagueA;@property (nonatomic ,strong) ConcreteColleagueB *colleagueB;-(void)notify:(NSObject *)obj;@end#import "Mediator.h"@implementation Mediator-(id)init{    self = [super init];    if(self)    {            }    return self;}-(void)notify:(NSObject *)obj{    if (obj == self.colleagueA)    {        [self.colleagueB notified:@"B notified"];    }    else    {        [self.colleagueA notified:@"A notified"];    }}@end

用戶端

        Mediator *mediator = [[Mediator alloc] init];                  ConcreteColleagueA *colleagueA = [[ConcreteColleagueA alloc] initWithMediator:mediator];        ConcreteColleagueB *colleagueB = [[ConcreteColleagueB alloc] initWithMediator:mediator];                mediator.colleagueA = colleagueA;        mediator.colleagueB = colleagueB;                [colleagueA notifyAnother];        [colleagueB notifyAnother];
2015-07-26 16:48:42.508 Mediator[3888:1799182] B notified2015-07-26 16:48:42.509 Mediator[3888:1799182] A notified

 

Objective-C設計模式——中介者Mediator(對象去耦)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.