码迷,mamicode.com
首页 > 其他好文 > 详细

单例设计模式和多例

时间:2019-07-17 23:14:22      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:col   连接池   bsp   code   设计模式   取出   单例   span   多例   

 1 public class Car {
 2     private static Car car = new Car();
 3     /**
 4      *  多例,getInstance()取出里面一个,(jdbc,连接池)
 5         private static List<Car> cars = new ArrayList<Car>();
 6      */
 7     private Car() {}
 8     public static Car getInstance() {
 9         return car;
10     }
11 }

 

单例设计模式和多例

标签:col   连接池   bsp   code   设计模式   取出   单例   span   多例   

原文地址:https://www.cnblogs.com/hengzhezou/p/11204279.html

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