编程语言
首页 > 编程语言> > java单件模式

java单件模式

作者:互联网

原文链接:http://www.cnblogs.com/zhuy/archive/2012/05/12/2497038.html

在系统中,往往有一些服务只需要它们在整个系统中只存在一个实例,而且可以在系统的任意角落访问到它,我们引入单件模式来解决这个问题,这是众多设计模式中的一种

class testSingleton
{
static testSingleton instance;//类的单例
private testSingleton{};//构造函数前的修饰符为私有;这样就不能在类的外部用new来生成//一个新的对象
public static testSingleton getInstance()//返回 单例
{
if(instance == null)
instance = new testSingleton();
return instance;
}
}

  主要思想为确保一个类只拥有一个对像

转载于:https://www.cnblogs.com/zhuy/archive/2012/05/12/2497038.html

标签:www,java,zhuy,单件,模式,instance,static,testSingleton,archive
来源: https://blog.csdn.net/weixin_30385925/article/details/97513713