单例模式
2019-11-12 16:05:54来源:博客园 阅读 ()
单例模式
单例模式实现;
灭霸所有单例模式,克隆、序列化、反射机制破坏7种单例模式;
枚举实现单例;
破坏单例模式测试代码
import java.io.Serializable; public class Singleton implements Cloneable, Serializable { private static volatile Singleton singleton; private Singleton() { if (null != singleton) { throw new RuntimeException(); } } public static Singleton getInstance() { if (singleton == null) { synchronized (Singleton.class) { if (singleton == null) { singleton = new Singleton(); } } } return singleton; } /** * 防止克隆攻击 * * @return * @throws CloneNotSupportedException */ @Override protected Object clone() throws CloneNotSupportedException { return super.clone(); } private Object readResolve() { return getInstance(); } }
public class Test1 { public static void main(String[] args) throws CloneNotSupportedException { Singleton singleton = Singleton.getInstance(); Singleton singleton1 = (Singleton) singleton.clone(); Singleton singleton2 = Singleton.getInstance(); System.out.println(singleton.hashCode()); System.out.println(singleton1.hashCode()); System.out.println(singleton2.hashCode()); } }
public class Test2 { public static void main(String[] args) throws IOException, ClassNotFoundException { Singleton singleton = Singleton.getInstance(); ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("d:\\xttblog.obj")); oos.writeObject(singleton); ObjectInputStream ois = new ObjectInputStream(new FileInputStream(new File("d:\\xttblog.obj"))); Singleton singleton1 = (Singleton) ois.readObject(); System.out.println(singleton.hashCode()); System.out.println(singleton1.hashCode()); System.out.println(singleton == singleton1); } }
public class Test3 { public static void main(String[] args) throws ReflectiveOperationException { Singleton singleton1 = Singleton.getInstance(); Class cls = Singleton.class; Constructor<Singleton> constructor = cls.getDeclaredConstructor(); constructor.setAccessible(true); Singleton singleton = constructor.newInstance(); System.out.println(singleton.hashCode()); System.out.println(singleton1.hashCode()); System.out.println(singleton == singleton1); } }
原文链接:https://www.cnblogs.com/liran123/p/11843180.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:dubbo解决本地开发直连
- 设计模式-委派/策略模式 2020-06-09
- 深入理解:设计模式中的七大设计原则 2020-06-07
- 设计模式---类之间的关系知多少 2020-06-07
- 你与面试官所了解的单例模式并不一样! 2020-06-06
- 高手眼中的观察者模式有什么不一样 2020-06-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash