hand first 设计模式 -迭代器模式
2009-09-17 00:00:00 来源:WEB开发网迭代器模式 : 提供一种方法顺序访问一个聚合对象中的各个元素,而又不暴露其内部的表示.
A食物
Java代码
public class AFood {
private String name;
private double price;
public AFood(String name,double price){
this.name= name;
this.price = price;
}
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;
}
@Override
public String toString() {
// TODO Auto-generated method stub
return "Name:" + name + " ,Price" + price;
}
}
A菜单
Java代码
public class AMenu implements Menu {
//利用List
private static List<AFood> foodList = new ArrayList<AFood>();
static {
foodList.add(new AFood("1food", 20.00));
foodList.add(new AFood("2food", 10.00));
foodList.add(new AFood("3food", 15.0));
}
@Override
public Iterator createIterator() {
// TODO Auto-generated method stub
return foodList.iterator();
}
}
- ››设计模式:工厂方法模式
- ››设计模式一 - Simple Factory, Factory Method, A...
- ››设计模式重构应用---Decorator模式
- ››设计模式重构应用---Template Method模式
- ››hand first 设计模式 - 装饰者模式
- ››hand first 设计模式 - 工厂模式
- ››hand first 设计模式 - 抽象工厂模式
- ››hand first 设计模式 - 单例模式
- ››hand first 设计模式 - 命令模式
- ››hand first 设计模式 -适配器模式
- ››hand first 设计模式 -外观模式
- ››hand first 设计模式 -模板方法模式
更多精彩
赞助商链接