hand first 设计模式 -迭代器模式
2009-09-17 00:00:00 来源:WEB开发网B食物
Java代码
public class BFood {
private String name;
private double price;
private boolean isVaggltable;
public BFood(String name, double price, boolean isVaggltable) {
this.name = name;
this.price = price;
this.isVaggltable = isVaggltable;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public boolean isVaggltable() {
return isVaggltable;
}
public void setVaggltable(boolean isVaggltable) {
this.isVaggltable = isVaggltable;
}
@Override
public String toString() {
// TODO Auto-generated method stub
return "Name:" + name + " Price:" + price + " isVaggltable:"
+ isVaggltable;
}
}
B菜单
Java代码
public class BMenu implements Menu {
//利用数组封装
private static BFood[] BFoodArray = null;
static {
BFoodArray = new BFood[] { new BFood("1bfood", 63, true),
new BFood("2bfood", 36, true), new BFood("3bfood", 25, false) };
}
@Override
public Iterator createIterator() {
// TODO Auto-generated method stub
ArrayIterator<BFood> ai = new ArrayIterator<BFood>(BFoodArray);
return ai;
}
}
- ››设计模式:工厂方法模式
- ››设计模式一 - Simple Factory, Factory Method, A...
- ››设计模式重构应用---Decorator模式
- ››设计模式重构应用---Template Method模式
- ››hand first 设计模式 - 装饰者模式
- ››hand first 设计模式 - 工厂模式
- ››hand first 设计模式 - 抽象工厂模式
- ››hand first 设计模式 - 单例模式
- ››hand first 设计模式 - 命令模式
- ››hand first 设计模式 -适配器模式
- ››hand first 设计模式 -外观模式
- ››hand first 设计模式 -模板方法模式
更多精彩
赞助商链接