Singleton.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Singleton {
  7. private static final Singleton singleton = new Singleton();
  8. //限制产生多个对象
  9. private Singleton(){
  10. }
  11. //通过该方法获得实例对象
  12. public static Singleton getSingleton(){
  13. return singleton;
  14. }
  15. //类中其他方法,尽量是static
  16. public static void doSomething(){
  17. }
  18. }