各位大虾,刚学习Java设计模式的单例模式,不够明白如何修改一段代码,麻烦各位大虾看下,帮忙修改一下:
代码如下:publicclassPropertyFileUtil{publicstaticPropertiesgetProperties()throwsIOExcepti...
代码如下:
public class PropertyFileUtil {
public static Properties getProperties() throws IOException {
Properties props = new Properties();
props.load(TimerUtils.class.getClassLoader().getResourceAsStream("init.properties"));
return props;
}
}
如何用单例模式改掉这段代码,让这段代码在多处被调用的时候只产生一个实例,将资源损耗降低呢?
多谢多谢!~ 展开
public class PropertyFileUtil {
public static Properties getProperties() throws IOException {
Properties props = new Properties();
props.load(TimerUtils.class.getClassLoader().getResourceAsStream("init.properties"));
return props;
}
}
如何用单例模式改掉这段代码,让这段代码在多处被调用的时候只产生一个实例,将资源损耗降低呢?
多谢多谢!~ 展开
2个回答
展开全部
Singleton模式主要作用是保证在Java应用程序中,一个类Class只有一个实例存在。
一般Singleton模式通常有几种种形式:
第一种形式: 定义一个类,它的构造函数为private的,它有一个static的private的该类变量,在类初始化时实羡尺友例话,通过一个public的getInstance方法获取对它的引用,继而调用其中困胡的方法。
public class Singleton {
private Singleton(){}
//在自己内部定义自己一个实例,是不是很奇怪?
//注意这是private 只供内部调用
private static Singleton instance = new Singleton();
//这里提供了一个供外部访问本class的静态方法,可以直接访问
public static Singleton getInstance() {
return instance;
}
}
第二种形式:
public class Singleton {
private static Singleton instance = null;
public static synchronized Singleton getInstance() {
//这个兄槐方法比上面有所改进,不用每次都进行生成对象,只是第一次
//使用时生成实例,提高了效率!
if (instance==null)
instance=new Singleton();
return instance;
}
}
一般Singleton模式通常有几种种形式:
第一种形式: 定义一个类,它的构造函数为private的,它有一个static的private的该类变量,在类初始化时实羡尺友例话,通过一个public的getInstance方法获取对它的引用,继而调用其中困胡的方法。
public class Singleton {
private Singleton(){}
//在自己内部定义自己一个实例,是不是很奇怪?
//注意这是private 只供内部调用
private static Singleton instance = new Singleton();
//这里提供了一个供外部访问本class的静态方法,可以直接访问
public static Singleton getInstance() {
return instance;
}
}
第二种形式:
public class Singleton {
private static Singleton instance = null;
public static synchronized Singleton getInstance() {
//这个兄槐方法比上面有所改进,不用每次都进行生成对象,只是第一次
//使用时生成实例,提高了效率!
if (instance==null)
instance=new Singleton();
return instance;
}
}
展开全部
public class PropertyFileUtil {
private static Properties props = new Properties();
private PropertyFileUtil (){}
public static Properties getProperties() throws IOException {
props.load(TimerUtils.class.getClassLoader().getResourceAsStream("睁差游郑init.properties"悉磨皮));
return props;
}
}
private static Properties props = new Properties();
private PropertyFileUtil (){}
public static Properties getProperties() throws IOException {
props.load(TimerUtils.class.getClassLoader().getResourceAsStream("睁差游郑init.properties"悉磨皮));
return props;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询