轻量工厂 : 工厂模式 « 设计模式 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 设计模式 » 工厂模式屏幕截图 
轻量工厂
轻量工厂

/*
Software Architecture Design Patterns in Java
by Partha Kuchana 

Auerbach Publications

*/


import java.util.HashMap;
import java.util.StringTokenizer;
import java.util.Vector;

public class FlyweightTest {

  public static void main(String[] argsthrows Exception {
    Vector empList = initialize();
    FlyweightFactory factory = FlyweightFactory.getInstance();

    for (int i = 0; i < empList.size(); i++) {
      String s = (StringempList.elementAt(i);
      StringTokenizer st = new StringTokenizer(s, ",");
      String name = st.nextToken();
      String title = st.nextToken();
      String division = st.nextToken();

      FlyweightIntr flyweight = factory.getFlyweight(division);
      //associate the flyweight
      //with the extrinsic data object.
      VCard card = new VCard(name, title, flyweight);
      card.print();
    }
  }

  private static Vector initialize() {
    //for simplicity values are being hardcoded.

    Vector v = new Vector();
    v.add("name1,title1,North");
    v.add("name2,title2,South");
    v.add("name3,title1,North");
    v.add("name4,title3,East");
    v.add("name5,title4,East");
    v.add("name6,title2,East");
    v.add("name7,title1,West");
    v.add("name8,title3,West");
    v.add("name9,title1,West");
    v.add("name10,title6,South");
    v.add("name11,title5,North");
    v.add("name12,title1,North");

    return v;
  }
}

class FlyweightFactory {
  private HashMap lstFlyweight;

  private static FlyweightFactory factory = new FlyweightFactory();

  private FlyweightFactory() {
    lstFlyweight = new HashMap();
  }

  public synchronized FlyweightIntr getFlyweight(String divisionName) {
    if (lstFlyweight.get(divisionName== null) {
      FlyweightIntr fw = new Flyweight(divisionName);
      lstFlyweight.put(divisionName, fw);
      return fw;
    else {
      return (FlyweightIntrlstFlyweight.get(divisionName);
    }
  }

  public static FlyweightFactory getInstance() {
    return factory;
  }

  //Inner flyweight class
  private class Flyweight implements FlyweightIntr {
    private String company;

    private String address;

    private String city;

    private String state;

    private String zip;

    private void setValues(String cmp, String addr, String cty, String st,
        String zp) {

      company = cmp;
      address = addr;
      city = cty;
      state = st;
      zip = zp;

    }

    private Flyweight(String division) {
      // values are hard coded
      //for simplicity
      if (division.equals("North")) {
        setValues("CMP""addr1""cty1""st1""10000");
      }
      if (division.equals("South")) {
        setValues("CMP""addr2""cty2""st2""20000");
      }
      if (division.equals("East")) {
        setValues("CMP""addr3""cty3""st3""30000");
      }
      if (division.equals("West")) {
        setValues("CMP""addr4""cty4""st4""40000");
      }
    }

    public String getCompany() {
      return company;
    }

    public String getAddress() {
      return address;
    }

    public String getCity() {
      return city;
    }

    public String getState() {
      return state;
    }

    public String getZip() {
      return zip;
    }

  }// end of Flyweight
}// end of FlyweightFactory

interface FlyweightIntr {
  public String getCompany();

  public String getAddress();

  public String getCity();

  public String getState();

  public String getZip();
}

class VCard {

  String name;

  String title;

  FlyweightIntr objFW;

  public VCard(String n, String t, FlyweightIntr fw) {
    name = n;
    title = t;
    objFW = fw;
  }

  public void print() {
    System.out.println(name);
    System.out.println(title);
    System.out.println(objFW.getAddress() "-" + objFW.getCity() "-"
        + objFW.getState() "-" + objFW.getZip());
    System.out.println("----------------");
  }

}

           
       
Related examples in the same category
1. 抽象工厂模式为例
2. Java 2中抽象工厂模式
3. Java中工厂方法模式
4. 说明使用抽象工厂模式说明使用抽象工厂模式
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.