/**
* 静态工厂方法
* *
* 2011-9-23
*/
public class StaticFactoryMother{
private static final StaticFactoryMother demo = new StaticFactoryMother();
public static StaticFactoryMother getInstance(){
return demo;
}
public void outPutStatic(){
System.out.println("Test Static Factory Class!");
}
}