快速业务通道

关于Java单例对象同步问题 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
ic synchronized void syncInit() {     if (instance == null) {      instance = new GlobalConfig();     }    }    public static GlobalConfig getInstance() {     if (instance == null) {      syncInit();     }     return instance;    }    public Vector getProperties() {     return properties;    }   }

这种处理方式虽然引入了同步代码,但是因为这段同步代码只会在最开始的时候执行一次或多次,所以对整个系统的性能不会有影响。

关于Java单例对象同步问题(3)

时间:2011-06-12

2.2 单例对象的属性更新同步

为了解决第2个问题,有两种方法:

1,参照读者/写者的处理方式

设置一个读计数器,每次读取配置信息前,将计数器加1,读完后将计数器减1.只有在读计数器为0时,才能更新数据,同时要阻塞所有读属性的调用。代码如下。

public class GlobalConfig { private static GlobalConfig instance; private Vector properties = null; private boolean isUpdating = false; private int readCount = 0; private GlobalConfig() {   //Load configuration information from DB or file     //Set values for properties } private static synchronized void syncInit() {   if (instance == null) {   instance = new GlobalConfig();   } } public static GlobalConfig getInstance() {   if (instance==null) {   syncInit();   }   return instance; } public synchronized void update(String p_data) {   syncUpdateIn();   //Update properties } private synchronized void syncUpdateIn() {   while (readCount > 0) {   try {    wait();   } catch (Exception e) {   }   } } private synchronized void syncReadIn() {   readCount++; } private synchronized void syncReadOut() {   readCount--;   notifyAll(); } public Vector getProperties() {   syncReadIn();   //Process data   syncReadOut();   return properties; }   }

关于Java单例对象同步问题(4)

时间:2011-06-12

2,采用"影子实例"的办法

具体说,就是在更新属性时,直接生成另一个单例对象实例,这个新生成的单例对象实例将从数据库或文件中读取最新的配置信息;然后将这些配置信息直接赋值给旧单例对象的属性。如下面代码所示。

public class GlobalConfig {    private static GlobalConfig instance = null;    private Vector properties = null;    private GlobalConfig() {     //Load configuration information from DB or file     //Set values for properties    }    private static synchronized void syncInit() {     if (instance = null) {      instance = new GlobalConfig();     }    }    public static GlobalConfig getInstance() {     if (instance = null) {      syncInit();     }     return instance;    }    public Vector getProperties() {     return properties;    }    public void updateProperties() {     //Load updated configuration information by new a GlobalConfig object     GlobalConfig shadow = new GlobalConfig();     properties = shadow.getProperties();    }   }

注意:在更新方法中,通过生成新的GlobalConfig的实例,从文件或数据库中得到最新配置信息,并存放到properties属性中。

上面两个方法比较起来,第二个方法更好,首先,编程更简单;其次,没有那么多的同步操作

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号