浏览 1344 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-01-24
最后修改:2010-02-22
公司为了节约资源,对于打印机用了Singleton模式,反正所有的文件打印只能在一台机器上。 对于Singleton的定义如下: 主要为了在整个java工程调用中只用到一个实例,这样节约了内存的消耗(只有一台打印机),如果同时使用,只有等待。但是可以避免启用多个实例,消耗不必要的资源。 public class Printer{ private Printer(){} private static Printer instance = new Printer(); //这里提供了一个外部调用打印机的方法 public static PrintergetInstance() { return instance; } } 这里是将打印先开下来,然后你可以直接调用。 但是这样好像有点浪费哦,你想想打印机一直开着多浪费,还不如有人用时再打开呢,看看多节约。 public class Printer{ private Printer(){} private static Printer instance = null; //这里提供了一个外部调用打印机的方法 public static Printer getInstance() { if(instance==null)//检查一下 是否开了。 instance = new Printer(); return instance; } } 为了防止同步时的情况,大家可以查考 http://www-106.ibm.com/developerworks/java/library/j-dcl.html?dwzone=java public class Printer{ private Printer(){} private static Printer instance = null; //这里提供了一个外部调用打印机的方法 public static synchronized Printer getInstance() { if(instance==null)//检查一下 是否开了。 instance = new Printer(); return instance; } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |