/** * @version 1.0 * @author Rollen-Holt * 设计模式之 ---单例模式 * */ class hello{ private hello(){ System.out.print("hello"); } public static hello getHello(){ return new hello(); } public static void main(String[] a0){ hello.getHello(); } }
本博客已经废弃,不在维护。新博客地址:http://wenchao.ren