博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单例模式
阅读量:6769 次
发布时间:2019-06-26

本文共 651 字,大约阅读时间需要 2 分钟。

hot3.png

在单例模式中,“例”表示“实例”,即对象,具体的表现为某个类的对象只会有1个。

为了确保其它类不可以随意创建对象,首先需要使用比较严格的访问权限修饰构造方法。

为了使得其它类可以获取该类的对象,声明getInstance()方法,并返回当前类的对象,在方法中创建对象,然后,使用static修饰该方法。

在类中声明当前类的对象的属性,使用static修饰,然后在getInstance()方法里对该属性进行判断,如果为null,则创建,否则,直接返回属性。

public class Student {  private static Student stu;  private Student() {  }  public static Student getInstance() {    if(stu == null) {      stu = new Student();    }    return stu;  }}public class Test {  public static void main(String[] a) {    Student stu1 = Student.getInstance();    Student stu2 = Student.getInstance();    Student stu3 = Student.getInstance();  }}

转载于:https://my.oschina.net/dreamerspace/blog/627368

你可能感兴趣的文章
724. Find Pivot Index
查看>>
Javascript this详解
查看>>
2018杭州云栖大会,梁胜博士的演讲PPT来啦!
查看>>
静态、动态代理和AOP详解(此坑未填)
查看>>
【刷算法】两个链表的第一个公共结点
查看>>
Vue 响应式核心 observer 源码详解 + 实践
查看>>
Linux下Rust环境配置
查看>>
使用CI、headless Browser、mocha对前端代码进行测试
查看>>
Promise学习笔记
查看>>
Gulp脚本
查看>>
30天自制操作系统-3
查看>>
[CSS]CSS Position 详解
查看>>
持续集成(一):maven私服搭建
查看>>
zabbix监控tomcat多实例(自动发现,主动模式)
查看>>
RecyclerView的刷新分页
查看>>
Spring Boot入门(4)提交表单并存入MySQL数据库
查看>>
用 webpack 和 Parcel 分别搭建第一个 ReactApp
查看>>
springCloud Finchley 微服务架构从入门到精通【四】服务消费者(feign)
查看>>
[转]Openfire后台getshell(编译好的插件)
查看>>
手拉手,用Vue开发动态刷新Echarts组件
查看>>