首页 > 代码库 > 简单工厂模式

简单工厂模式

技术分享

代码:

 

技术分享
/**
 * 简单工厂模式
 * @author se
 *
 */
public class HumanFactory {
    @SuppressWarnings("unchecked")
    public static <T> T createHuman(Class<?> c){
        Human human = null;
        try {
            human = (Human) Class.forName(c.getName()).newInstance();
        }catch (Exception e) {
            e.printStackTrace();
        }
        return (T) human;
    }
    
    public static void main(String[] args) {
        Human m=HumanFactory.createHuman(YellowPeple.class);
        m.talk();
    }
}
View Code

 

简单工厂模式