单例设计模式和多例
Posted hengzhezou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单例设计模式和多例相关的知识,希望对你有一定的参考价值。
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
以上是关于单例设计模式和多例的主要内容,如果未能解决你的问题,请参考以下文章