码迷,mamicode.com
首页 > 编程语言 > 详细

Java单例模式&static成员变量 区别

时间:2018-01-17 23:37:11      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:src   tin   instance   图片   饿汉   private   生命周期   区别   return   

当需要共享的变量很多时,使用static变量占用内存的时间过长,在类的整个生命周期。
而对象只是存在于对象的整个生命周期。

 

技术分享图片
 

 

 
//饿汉式
class Single//类一加载,对象就已经存在了。
{
private static Single s = new Single();
 
private Single(){}
 
public static Single getInstance()
{
return s;
}
}
 
//懒汉式    
class Single2//类加载进来,没有对象,只有调用了getInstance方法时,才会创建对象。
//延迟加载形式。 并发过程中存在安全隐患。
{
private static Single2 s = null;
 
private Single2(){}
 
public static Single2 getInstance()
{
if(s==null)
s = new Single2();
return s;
}
}

 

Java单例模式&static成员变量 区别

标签:src   tin   instance   图片   饿汉   private   生命周期   区别   return   

原文地址:https://www.cnblogs.com/xiarongjin/p/8306569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!