美文网首页23种设计模式
23种设计模式(四)

23种设计模式(四)

作者: 刀客传奇 | 来源:发表于2017-04-26 01:13 被阅读43次

版本记录

版本号 时间
V1.0 2017.04.26

前言

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

详述

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

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

模板方法模式

下面来代码。

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 <Foundation/Foundation.h>

@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

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

看一下代码组织。

代码组织

下面直接看代码。

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 <Foundation/Foundation.h>

@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 <Foundation/Foundation.h>

@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 <Foundation/Foundation.h>

@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 <Foundation/Foundation.h>

@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

结论:要理解思想。

后记

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

养眼美女

相关文章

  • 前端设计模式

    JS设计模式一:工厂模式jS设计模式二:单例模式JS设计模式三:模块模式JS设计模式四:代理模式JS设计模式五:职...

  • 第1章 设计模式概述

    一、设计模式的概念 二、设计模式的历史 三、设计模式的要素 四、设计模式的分类 ■ 创建型设计模式 ■ 结构型设计...

  • 单例模式

    面向对象设计的设计模式(四):单例模式

  • 设计模式四、抽象工厂模式

    系列传送门设计模式一、单例模式设计模式二、简单工厂模式设计模式三、工厂模式设计模式四、抽象工厂模式 抽象工厂模式 ...

  • 设计模式三、工厂模式

    系列传送门设计模式一、单例模式设计模式二、简单工厂模式设计模式三、工厂模式设计模式四、抽象工厂模式 工厂模式 在一...

  • 设计模式一、单例模式

    系列传送门设计模式一、单例模式设计模式二、简单工厂模式设计模式三、工厂模式设计模式四、抽象工厂模式 简单单例(推荐...

  • 《JS设计模式》读书笔记(一)

    标签:JS 设计模式 《JS设计模式》读书笔记(二) 《JS设计模式》读书笔记(三) 《JS设计模式》读书笔记(四...

  • 设计模式(十四)中介者模式

    相关文章 设计模式(一)设计六大原则设计模式(二)单例模式的七种写法设计模式(三)建造者模式设计模式(四)简单工厂...

  • 企业总裁专阅

    —、产品营销模式设计。 二、企业商业模式设计。 三、企业股权顶层设计。 四、公司金融模式设计。 ①教你颠覆传统营销...

  • Java 十一种设计模式深入理解

    目录一、工厂设计模式二、抽象工厂模式三、单例设计模式四、建造者(Builder)模式五、原型模式六、适配器设计模式...

网友评论

    本文标题:23种设计模式(四)

    本文链接:https://www.haomeiwen.com/subject/grwbzttx.html