23种设计模式(四)

版本记录

版本号 时间
V1.0 2017.04.26

前言

前面讲了23种设计模式中的前几个,下面我们继续,先看前几篇文章。
1. 23种设计模式(一)
2. 23种设计模式(二)
3. 23种设计模式(三)

详述

六、模板方式模式——Template method

定义一个操作中的算法的骨架,而将一些步骤延迟到子类中,模板方法使得子类可以不改变一个算法的结构即可重定义该算法的某些特定步骤。

23种设计模式(四)_第1张图片
模板方法模式

下面来代码。

1. ViewController.m

#import "ViewController.h"
#import "HCDtextPaper.h"
#import "HCDtextPaperA.h"
#import "HCDtextPaperB.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    HCDtextPaper *paperA = [[HCDtextPaperA alloc]init];
    [paperA testQuestion1];
    [paperA testQuestion2];
    
    HCDtextPaper *paperB = [[HCDtextPaperB alloc]init];
    [paperB testQuestion1];
    [paperB testQuestion2];
}

@end

2. HCDtextPaper.h

#import 

@interface HCDtextPaper : NSObject

- (void)testQuestion1;

- (NSString *)answer1;

- (void)testQuestion2;

- (NSString *)answer2;

@end

3. HCDtextPaper.m

#import "HCDtextPaper.h"

@implementation HCDtextPaper

- (void)testQuestion1
{
    NSLog(@"问题:杨过得到,后来给了郭靖,炼成倚天剑、屠龙刀的玄铁可能是[ ]:a.球磨铸铁 b.马口铁 c.高速合金钢 d.碳素纤维");
    NSLog(@"答案:%@", [self answer1]);
}

- (NSString *)answer1
{
    return nil;
}

- (void)testQuestion2
{
    NSLog(@"问题:杨过、程英、陆无双铲除了情花,造成[ ]:a.使这种植物不再害人 b.使一种珍稀物种灭绝 c.破坏了那个生物圈的生态平衡 d.造成该地区沙漠化");
    NSLog(@"答案:%@", [self answer2]);
}

- (NSString *)answer2
{
    return nil;
}

@end

4. HCDtextPaperA.h
#import "HCDtextPaper.h"

@interface HCDtextPaperA : HCDtextPaper

@end

5. HCDtextPaperA.m
#import "HCDtextPaperA.h"

@implementation HCDtextPaperA

- (NSString *)answer1
{
    return @"b";
}

- (NSString *)answer2
{
    return @"c";
}

@end
6. HCDtextPaperB.h
#import "HCDtextPaper.h"

@interface HCDtextPaperB : HCDtextPaper

@end

7. HCDtextPaperB.m
#import "HCDtextPaperB.h"

@implementation HCDtextPaperB

- (NSString *)answer1
{
    return @"a";
}

- (NSString *)answer2
{
    return @"d";
}

@end

看输出结果。

2017-04-26 00:29:40.004 6模板方法模式[2138:90851] 问题:杨过得到,后来给了郭靖,炼成倚天剑、屠龙刀的玄铁可能是[ ]:a.球磨铸铁 b.马口铁 c.高速合金钢 d.碳素纤维
2017-04-26 00:29:40.005 6模板方法模式[2138:90851] 答案:b
2017-04-26 00:29:40.005 6模板方法模式[2138:90851] 问题:杨过、程英、陆无双铲除了情花,造成[ ]:a.使这种植物不再害人 b.使一种珍稀物种灭绝 c.破坏了那个生物圈的生态平衡 d.造成该地区沙漠化
2017-04-26 00:29:40.005 6模板方法模式[2138:90851] 答案:c
2017-04-26 00:29:40.006 6模板方法模式[2138:90851] 问题:杨过得到,后来给了郭靖,炼成倚天剑、屠龙刀的玄铁可能是[ ]:a.球磨铸铁 b.马口铁 c.高速合金钢 d.碳素纤维
2017-04-26 00:29:40.006 6模板方法模式[2138:90851] 答案:a
2017-04-26 00:29:40.006 6模板方法模式[2138:90851] 问题:杨过、程英、陆无双铲除了情花,造成[ ]:a.使这种植物不再害人 b.使一种珍稀物种灭绝 c.破坏了那个生物圈的生态平衡 d.造成该地区沙漠化
2017-04-26 00:29:40.006 6模板方法模式[2138:90851] 答案:d

结论:看思想。


七、外观模式——Facade

为子系统中的一组接口提供一个一致的界面,此模式定义了一个高层接口,这个接口使得这一子系统更加容易使用。

看一下代码组织。

23种设计模式(四)_第2张图片
代码组织

下面直接看代码。

1. ViewController.m
#import "ViewController.h"
#import "HCDFound.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    HCDFound *found = [[HCDFound alloc] init];
    [found buyFund];
    [found sellFund];
}

@end


2. HCDFound.h

#import 

@interface HCDFound : NSObject

- (void)buyFund;

- (void)sellFund;

@end

3. HCDFound.m
#import "HCDFound.h"
#import "HCDstock1.h"
#import "HCDstock2.h"
#import "HCDstock3.h"

@interface HCDFound()

@property (nonatomic, strong) HCDstock1 *stock1;
@property (nonatomic, strong) HCDstock2 *stock2;
@property (nonatomic, strong) HCDstock3 *stock3;

@end

@implementation HCDFound

- (instancetype)init
{
    self = [super init];
    if (self) {
        _stock1 = [[HCDstock1 alloc] init];
        _stock2 = [[HCDstock2 alloc] init];
        _stock3 = [[HCDstock3 alloc] init];
    }
    return self;
}

- (void)buyFund
{
    [self.stock1 buy];
    [self.stock2 buy];
    [self.stock3 buy];
}

- (void)sellFund
{
    [self.stock1 sell];
    [self.stock2 sell];
    [self.stock3 sell];
}

@end


4. HCDstock1.h
#import 

@interface HCDstock1 : NSObject

- (void)buy;

- (void)sell;

@end
5. HCDstock1.m

#import "HCDstock1.h"

@implementation HCDstock1

- (void)buy
{
    NSLog(@"买入股票1");
}

- (void)sell
{
    NSLog(@"卖出股票1");
}

@end

6. HCDstock2.h
#import 

@interface HCDstock2 : NSObject

- (void)buy;

- (void)sell;

@end


7. HCDstock2.m
#import "HCDstock2.h"

@implementation HCDstock2

- (void)buy
{
    NSLog(@"买入股票2");
}

- (void)sell
{
    NSLog(@"卖出股票2");
}

@end


8. HCDstock3.h

#import 

@interface HCDstock3 : NSObject

- (void)buy;

- (void)sell;

@end


9. HCDstock3.m

#import "HCDstock3.h"

@implementation HCDstock3

- (void)buy
{
    NSLog(@"买入股票3");
}

- (void)sell
{
    NSLog(@"卖出股票3");
}

@end

看输出结果。

2017-04-26 00:57:24.231 7外观模式[2526:108429] 买入股票1
2017-04-26 00:57:24.231 7外观模式[2526:108429] 买入股票2
2017-04-26 00:57:24.232 7外观模式[2526:108429] 买入股票3
2017-04-26 00:57:24.232 7外观模式[2526:108429] 卖出股票1
2017-04-26 00:57:24.232 7外观模式[2526:108429] 卖出股票2
2017-04-26 00:57:24.233 7外观模式[2526:108429] 卖出股票3

结论:要理解思想。

后记

未完待续,谢谢大家。一张美女图结束吧,给大家养养眼。

23种设计模式(四)_第3张图片
养眼美女

你可能感兴趣的:(23种设计模式(四))