- 论坛徽章:
- 0
|
- /**
- * File:MyRevert.java
- * ----------------------
- * Please read Item 3 in the 2nd Edition of <Effective Java>, Bloch explains three ways of implementing
- * a singleton in Java, the best is “Enum as Singleton”.Joshua Bloch is aka Josh Bloch,you can see his
- * write code in OpenJdk source code.(e.g.Collections.java)
- */
- package org.cudemo;
- /**
- * @author isaacxu
- *
- */
- public class MyRevert {
- /**
- * @param args
- */
- public static void main(String[] args) {
-
- MyRevert.Singleton.getInstance();
- MyRevert.MyNewSingleton.gotIt();
- }
- /**
- * before Java1.5
- * @author isaacxu
- *
- */
- public static class Singleton {
- private static Singleton uniqInstance;
- private Singleton() {
-
- }
- public static synchronized Singleton getInstance() {
- if (uniqInstance == null) {
- uniqInstance = new Singleton();
- }
- System.out.println("Hi,I am old java Singleton");
- return uniqInstance;
- }
-
- }
- /**
- * after Java1.6
- */
- public static enum MyNewSingleton {
- INSTANCE;
- public static void gotIt(){
- System.out.println("Hi,I am the best Singleton!");
- }
-
- }
- }
复制代码 |
|