iOS设计模式 - 迭代器
iOS设计模式 - 迭代器
原理图
说明
提供一种方法顺序访问一个聚合对象中的各种元素,而又不暴露该对象的内部表示。
源码
https://github.com/YouXianMing/iOS-Design-Patterns
//
// Node.h
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import <Foundation/Foundation.h> @interface Node : NSObject /**
* 下一个节点
*/
@property (nonatomic, strong) Node *nextNode; /**
* 节点里面的内容
*/
@property (nonatomic, strong) id item; /**
* 初始化节点
*
* @param item 节点携带的内容
*
* @return 节点
*/
- (instancetype)initWithItem:(id)item; @end
//
// Node.m
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import "Node.h" @implementation Node - (instancetype)initWithItem:(id)item { self = [super init]; if (self) { self.item = item;
} return self;
} @end
//
// LinkedList.h
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import <Foundation/Foundation.h>
#import "Node.h" #import "IteratorProtocol.h"
#import "LinkedListIterator.h" @interface LinkedList : NSObject /**
* 头结点
*/
@property (nonatomic, strong, readonly) Node *headNode; /**
* 节点的数目
*/
@property (nonatomic, assign, readonly) NSInteger numberOfNodes; /**
* 添加数据
*
* @param item 数据
*/
- (void)addItem:(id)item; /**
* 创建迭代器对象
*
* @return 迭代器对象
*/
- (id <IteratorProtocol>)createIterator; @end
//
// LinkedList.m
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import "LinkedList.h" @interface LinkedList () /**
* 头结点
*/
@property (nonatomic, strong, readwrite) Node *headNode; /**
* 节点的数量
*/
@property (nonatomic, assign, readwrite) NSInteger numberOfNodes; @end @implementation LinkedList - (void)addItem:(id)item { if (self.headNode == nil) { self.headNode = [[Node alloc] initWithItem:item]; } else { [self addItem:item node:self.headNode];
} self.numberOfNodes++;
} - (id <IteratorProtocol>)createIterator { return [[LinkedListIterator alloc] initWithLinkedList:self];
} #pragma mark - Private Methods
- (void)addItem:(id)item node:(Node *)node { if (node.nextNode == nil) { node.nextNode = [[Node alloc] initWithItem:item]; } else { [self addItem:item node:node.nextNode];
}
} @end
//
// LinkedListIterator.h
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import <Foundation/Foundation.h>
#import "IteratorProtocol.h"
@class LinkedList; @interface LinkedListIterator : NSObject <IteratorProtocol> /**
* 由链表进行初始化
*
* @param linkedList 链表对象
*
* @return 迭代器工具
*/
- (id)initWithLinkedList:(LinkedList *)linkedList; @end
//
// LinkedListIterator.m
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import "LinkedListIterator.h"
#import "LinkedList.h" @interface LinkedListIterator () @property (nonatomic, weak) LinkedList *linkedList;
@property (nonatomic, weak) Node *currentNode; @end @implementation LinkedListIterator - (id)initWithLinkedList:(LinkedList *)linkedList { if (self = [super init]) { self.linkedList = linkedList;
self.currentNode = linkedList.headNode;
} return self;
} - (id)next { id item = self.currentNode.item;
self.currentNode = self.currentNode.nextNode; return item;
} - (BOOL)hasNext { if (self.currentNode == nil) { return NO; } else { return YES;
}
} - (id)item { return self.currentNode.item;
} @end
//
// IteratorProtocol.h
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import <Foundation/Foundation.h> @protocol IteratorProtocol <NSObject> /**
* 下一个对象
*
* @return 对象
*/
- (id)next; /**
* 是否存在下一个对象
*
* @return 对象
*/
- (BOOL)hasNext; /**
* 内容
*
* @return 返回内容
*/
- (id)item; @end
//
// ViewController.m
// IteratorPattern
//
// Created by YouXianMing on 15/10/26.
// Copyright © 2015年 YouXianMing. All rights reserved.
// #import "ViewController.h" #import "LinkedList.h"
#import "LinkedListIterator.h" @interface ViewController () @property (nonatomic, strong) LinkedList *linkedList; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // 创建链表结构
self.linkedList = [[LinkedList alloc] init]; // 添加链表元素
[self.linkedList addItem:@""];
[self.linkedList addItem:@""];
[self.linkedList addItem:@""];
[self.linkedList addItem:@""];
[self.linkedList addItem:@""]; // 创建迭代器
id <IteratorProtocol> iterator = [self.linkedList createIterator]; // 进行元素迭代
while ([iterator hasNext]) { NSLog(@"%@", iterator.item);
[iterator next];
}
} @end
细节
iOS设计模式 - 迭代器的更多相关文章
- iOS书摘之Objective-C编程之道 iOS设计模式解析
来自<Objective-C编程之道iOS设计模式解析>一书的摘要总结 一.Prototype 原型模式 定义:使用原型实例指定创建对象的种类,并通过复制这个原型创建新的对象.(<设 ...
- iOS设计模式 - (1)概述
近期可自由安排的时间比較多, iOS应用方面, 没什么好点子, 就先放下, 不写了.花点时间学学设计模式. 之后将会写一系列博文, 记录设计模式学习过程. 当然, 由于我自己是搞iOS的, 所以之后设 ...
- 19. 星际争霸之php设计模式--迭代器模式
题记==============================================================================本php设计模式专辑来源于博客(jymo ...
- IOS设计模式之一(MVC模式,单例模式)
iOS 设计模式-你可能已经听说过这个词,但是你真正理解它意味着什么吗?虽然大多数的开发者可能都会认为设计模式是非常重要的,然而关于设计模式这一主题的文章却不多,并且有时候我们开发者在写代码的时候也不 ...
- iOS 设计模式之工厂模式
iOS 设计模式之工厂模式 分类: 设计模式2014-02-10 18:05 11020人阅读 评论(2) 收藏 举报 ios设计模式 工厂模式我的理解是:他就是为了创建对象的 创建对象的时候,我们一 ...
- iOS设计模式之生成器
iOS设计模式之生成器 1.生成器模式的定义 (1): 将一个复杂的对象的构件与它的表示分离,使得相同的构建过程能够创建不同的表示 (2): 生成器模式除了客户之外还包括一个Director(指导者) ...
- IOS设计模式之三:MVC模式
IOS设计模式之三:MVC模式 模型-视图-控制器 这个模式其实应该叫做MCV,用控制器把model与view隔开才对,也就是model与view互相不知道对方的存在,没有任何瓜葛,他们就像一个团 ...
- iOS设计模式 - 享元
iOS设计模式 - 享元 原理图 说明 享元模式使用共享物件,用来尽可能减少内存使用量以及分享资讯给尽可能多的相似物件:它适合用于只是因重复而导致使用无法令人接受的大量内存的大量物件.通常物件中的部分 ...
- iOS设计模式 - 责任链
iOS设计模式 - 责任链 原理图 说明 在责任链模式里,很多对象由每一个对象对其下家的引用而连接起来形成一条链.请求在这个链上传递,直到链上的某一个对象决定处理此请求.发出这个请求的客户端并不知道链 ...
随机推荐
- Spring配置Quartz任务调度、及 ThreadPool 线程池
ONE.除了引入 Spring 相关的 jar 包,还要引入 Quartz 的 jar 包 <dependency> <groupId>org.springframework& ...
- 遇见CUBA CLI
原文:Meet CLI for CUBA Platform 翻译:CUBA China CUBA-Platform 官网 : https://www.cuba-platform.com CUBA Ch ...
- 《小岛经济学--鱼、美元和经济的故事》Digest
作者:彼得.D.希夫(Peter D. Schiff)安德鲁.J.希(Andrew J. Schiff) How an Economy Grows and Why It Crashes 打车到清华,车 ...
- 简单的node爬虫练手,循环中的异步转同步
简单的node爬虫练手,循环中的异步转同步 转载:https://blog.csdn.net/qq_24504525/article/details/77856989 看到网上一些基于node做的爬虫 ...
- Oracle时间换算:日,月,周数,星期,年
http://blog.csdn.net/liangweiwei130/article/details/37930383 Oracle时间换算,留做记号!
- springboot面试专题及答案
声明:此文章非本人所 原创,是别人分享所得,如有知道原作者是谁可以联系本人,如有转载请加上此段话 问题一 什么是 Spring Boot? 多年来,随着新功能的增加,spring 变得越来越复杂.只需 ...
- win32FTP程序设计
掌握socket基于事件机制的网络程序设计,掌握多线程技术的FTP Server端设计方法,掌握FTP标准基本协议及其程序的实现,掌握文件内容的网络传输设计方法. 利用CFtpServer类接收和解析 ...
- K:Treap(堆树)
Treap=Tree+Heap.Treap是一棵二叉排序树,它的左子树和右子树分别是一个Treap,和一般的二叉排序树不同的是, Treap记录一个额外的数据, 就是优先级.Treap在以关键码构 ...
- Nginx 反向代理时获取用户的真实 IP
在平时我们开发后端程序的过程中,应该多多少少都会碰到记录客户端 IP 的场景,例如我之前写过的 APP 用户的一个审计功能,就需要获取用户的 IP 地址:还有广告系统里面,也是需要获取用户的 IP 地 ...
- python__new__与__init__的区别
__new__ __init__区别 1 class A(object): 2 def __init__(self,*args, **kwargs): 3 print "init A&quo ...