迭代器模式

迭代器模式提供一種方法順序訪問一個(gè)聚合對(duì)象中的各個(gè)元素双妨,而又不暴露其內(nèi)部的表示。

示例—合并兩種菜單

有兩種餐廳菜單叮阅,分別用數(shù)組和ArrayList實(shí)現(xiàn)〉笃罚現(xiàn)在需要合并兩種菜單,且合并后可以讓一個(gè)女招待的類去訪問浩姥,不需要重復(fù)代碼就可以同時(shí)訪問兩種菜單挑随。

UML圖表示

迭代器模式-合并菜單

代碼演示

菜單項(xiàng)類

package Menu;

public class MenuItem {
    String name;
    String description;
    boolean vegetarian;
    double price;

    public MenuItem(String name,String description, boolean vegetarian, double price){
        this.name = name;
        this.description = description;
        this.vegetarian = vegetarian;
        this.price = price;
    }

    @Override
    public String toString() {
        return name + ", " + price + " -- " + description;
    }

    public String getName() {
        return name;
    }

    public String getDescription() {
        return description;
    }

    public boolean isVegetarian() {
        return vegetarian;
    }

    public double getPrice() {
        return price;
    }
}

菜單接口

package Menu;

import java.util.Iterator;

public interface Menu {
    Iterator createIterator();
}

午餐廳菜單

package Menu;

import java.util.Iterator;

public class DinerMenu implements Menu {
    static final int MAX_ITEMS = 6;
    int numberOfItems = 0;
    MenuItem[] menuItems;

    public DinerMenu() {
        menuItems = new MenuItem[MAX_ITEMS];

        addItem("Vegetarian BLT",
                "(Fakin')Bacon with lettuce & tomato on whole wheat", true, 2.99);
        addItem("BLT","Bacon with lettuce & tomato on whole wheat", false,2.99);
        addItem("Soup of the day"
                ,"Soup of the day, with a side of potato salad", false,3.29);
        addItem("Hotdog","A hot dog, with saurkraut, relish, onions, topped with cheese",
                false,3.05);
    }

    public void addItem(String name, String description,
                        boolean vegetarian, double price){
        MenuItem menuItem = new MenuItem(name, description,
                vegetarian, price);
        if (numberOfItems >= MAX_ITEMS) {
            System.err.println("Sorry, menu is full! Can't add item to menu");
        }
        else{
            menuItems[numberOfItems] = menuItem;
            numberOfItems++;
        }
    }

    public Iterator createIterator(){
        return new DinerMenuIterator(menuItems);
    }

}

午餐廳迭代器

package Menu;

import java.util.Iterator;
import java.util.List;

public class DinerMenuIterator implements Iterator {

    MenuItem[] items;
    int position = 0;

    public DinerMenuIterator(MenuItem[] items) {
        this.items = items;
    }

    @Override
    public boolean hasNext() {
        if (position >= items.length || items[position] == null)
            return false;
        else
            return true;
    }

    @Override
    public Object next() {
        MenuItem menuItem = items[position];
        position = position + 1;
        return menuItem;
    }

    @Override
    public void remove() {
        if (position <= 0){
            throw  new IllegalStateException("You can't remove an item until you've at least one next()");
        }
        if (items[position - 1] != null){
            for (int i = position - 1; i < (items.length - 1); i++){
                items[i] = items[i + 1];
            }

            items[items.length - 1] = null;
        }
    }
}

煎餅屋菜單類

package Menu;

import java.util.ArrayList;
import java.util.Iterator;

public class PancakeHouseMenu implements Menu {
    ArrayList<MenuItem> menuItems;

    public PancakeHouseMenu(){
        menuItems = new ArrayList();

        addItem("K&B's Pancake Breakfast",
                "Pancakes with scrambled eggs, and toast",
                true,2.99);
        addItem("Regular Pancake Breakfast",
                "Pancakes with fired eggs, sausage",
                false,2.99);
        addItem("Blueberry Pancakes",
                "Pancakes made with fresh blueberries",
                true,3.49);
        addItem("Waffles",
                "Waffles, with your choice of blueberries or strawberries",
                true,3.59);

    }

    public void addItem(String name, String description,
                        boolean vegetarian, double price){
        MenuItem menuItem = new MenuItem(name, description,
                vegetarian, price);
        menuItems.add(menuItem);
    }

//    public PancakeHouseMenuIterator createIterator() {
//        return new PancakeHouseMenuIterator(menuItems);
//    }

    public Iterator createIterator() {
        return menuItems.iterator();
    }
}

煎餅屋迭代器(可用系統(tǒng)迭代器代替)

package Menu;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class PancakeHouseMenuIterator implements Iterator {

    private ArrayList<MenuItem> menuItems;
    private int position = 0;

    public PancakeHouseMenuIterator(ArrayList<MenuItem> menuItems){
        this.menuItems = menuItems;
    }

    @Override
    public boolean hasNext() {
        if (position >= menuItems.size() || menuItems.get(position) == null)
            return false;
        else
            return true;
    }

    @Override
    public Object next() {
        MenuItem item = menuItems.get(position);
        position++;
        return item;
    }

    @Override
    public void remove() {

    }
}

服務(wù)生類

package Menu;

import java.util.Iterator;

public class Waitress {

    Menu pancakeHouseMenu;
    Menu dinerMenu;

    public Waitress(Menu pancakeHouseMenu, Menu dinerMenu){
        this.pancakeHouseMenu = pancakeHouseMenu;
        this.dinerMenu = dinerMenu;
    }

    public void printMenu() {
        Iterator pancakeIterator = pancakeHouseMenu.createIterator();
        Iterator dinerIterator = dinerMenu.createIterator();
        System.out.println("MENU\n----\nBREAKFAST");
        printMenu(pancakeIterator);
        System.out.println("\nLUNCH");
        printMenu(dinerIterator);
    }

    public void printMenu(Iterator iterator) {
        while (iterator.hasNext()) {
            MenuItem menuItem = (MenuItem) iterator.next();
            System.out.print(menuItem.getName() + ", ");
            System.out.print(menuItem.getPrice() + " -- ");
            System.out.println(menuItem.getDescription());
        }
    }

}

測(cè)試代碼

package Menu;

public class MenuTestDrive {
    public static void main(String[] args) {
        PancakeHouseMenu pancakeHouseMenu = new PancakeHouseMenu();
        DinerMenu dinnerMenu = new DinerMenu();
        Waitress waitress = new Waitress(pancakeHouseMenu,dinnerMenu);
        waitress.printMenu();
    }
}

測(cè)試結(jié)果

MENU
----
BREAKFAST
K&B's Pancake Breakfast, 2.99 -- Pancakes with scrambled eggs, and toast
Regular Pancake Breakfast, 2.99 -- Pancakes with fired eggs, sausage
Blueberry Pancakes, 3.49 -- Pancakes made with fresh blueberries
Waffles, 3.59 -- Waffles, with your choice of blueberries or strawberries

LUNCH
Vegetarian BLT, 2.99 -- (Fakin')Bacon with lettuce & tomato on whole wheat
BLT, 2.99 -- Bacon with lettuce & tomato on whole wheat
Soup of the day, 3.29 -- Soup of the day, with a side of potato salad
Hotdog, 3.05 -- A hot dog, with saurkraut, relish, onions, topped with cheese
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市勒叠,隨后出現(xiàn)的幾起案子兜挨,更是在濱河造成了極大的恐慌,老刑警劉巖眯分,帶你破解...
    沈念sama閱讀 212,718評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件拌汇,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡弊决,警方通過查閱死者的電腦和手機(jī)噪舀,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來飘诗,“玉大人与倡,你說我怎么就攤上這事±ジ澹” “怎么了纺座?”我有些...
    開封第一講書人閱讀 158,207評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長貌嫡。 經(jīng)常有香客問我比驻,道長,這世上最難降的妖魔是什么岛抄? 我笑而不...
    開封第一講書人閱讀 56,755評(píng)論 1 284
  • 正文 為了忘掉前任别惦,我火速辦了婚禮,結(jié)果婚禮上夫椭,老公的妹妹穿的比我還像新娘掸掸。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評(píng)論 6 386
  • 文/花漫 我一把揭開白布扰付。 她就那樣靜靜地躺著堤撵,像睡著了一般。 火紅的嫁衣襯著肌膚如雪羽莺。 梳的紋絲不亂的頭發(fā)上实昨,一...
    開封第一講書人閱讀 50,050評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音盐固,去河邊找鬼荒给。 笑死,一個(gè)胖子當(dāng)著我的面吹牛刁卜,可吹牛的內(nèi)容都是我干的志电。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼蛔趴,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼挑辆!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起孝情,我...
    開封第一講書人閱讀 37,882評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤鱼蝉,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后咧叭,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蚀乔,經(jīng)...
    沈念sama閱讀 44,330評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評(píng)論 2 327
  • 正文 我和宋清朗相戀三年菲茬,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了吉挣。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,789評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡婉弹,死狀恐怖睬魂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情镀赌,我是刑警寧澤氯哮,帶...
    沈念sama閱讀 34,477評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站商佛,受9級(jí)特大地震影響喉钢,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜良姆,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評(píng)論 3 317
  • 文/蒙蒙 一肠虽、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧玛追,春花似錦税课、人聲如沸闲延。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽垒玲。三九已至,卻和暖如春找颓,著一層夾襖步出監(jiān)牢的瞬間合愈,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評(píng)論 1 267
  • 我被黑心中介騙來泰國打工叮雳, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留想暗,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,598評(píng)論 2 362
  • 正文 我出身青樓帘不,卻偏偏與公主長得像,于是被迫代替她去往敵國和親杨箭。 傳聞我的和親對(duì)象是個(gè)殘疾皇子寞焙,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容

  • 1 場(chǎng)景問題# 1.1 工資表數(shù)據(jù)的整合## 考慮這樣一個(gè)實(shí)際應(yīng)用:整合工資表數(shù)據(jù)。 這個(gè)項(xiàng)目的背景是這樣的互婿,項(xiàng)目...
    七寸知架構(gòu)閱讀 2,537評(píng)論 0 53
  • 目錄 本文的結(jié)構(gòu)如下: 引言 什么是迭代器模式 模式的結(jié)構(gòu) 典型代碼 代碼示例 優(yōu)點(diǎn)和缺點(diǎn) 適用環(huán)境 模式應(yīng)用 一...
    w1992wishes閱讀 513評(píng)論 0 1
  • 本篇文章介紹一種設(shè)計(jì)模式——迭代器模式捣郊。本篇文章內(nèi)容參考:《JAVA與模式》之迭代子模式, 23種設(shè)計(jì)模式(13)...
    Ruheng閱讀 5,584評(píng)論 0 6
  • 1.迭代器模式概念 迭代器模式(Iterator Pattern)慈参,提供一種方法順序訪問一個(gè)聚合對(duì)象中各個(gè)元素, ...
    lgy_gg閱讀 318評(píng)論 0 1
  • 我怎么做的 拿到值月生給得編號(hào)呛牲,我就逐個(gè)在大群里面尋找我的人馬,說實(shí)話驮配,77個(gè)人我真得不認(rèn)識(shí)不了解幾個(gè)娘扩。搜編號(hào)是最...
    張小瓊閱讀 327評(píng)論 2 1