⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fontfactory.java

📁 23种设计模式的java实现 include vistor,proxy,bridge
💻 JAVA
字号:
/**
 *  A Flyweight Factory
 */
import java.util.*;

public class FontFactory  {
    private Hashtable charHashTable = new Hashtable();
    
    public FontFactory() {
    }

    public Font GetFlyWeight(String s) {
        if(charHashTable.get(s) != null) {
            return (Font)charHashTable.get(s);
        } else {
            Font tmp = new ConcreteFont(s);
            charHashTable.put(s, tmp);
            return tmp;
        }
    }
    public Hashtable GetFactory() {
        return charHashTable;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -