码迷,mamicode.com
首页 > Web开发 > 详细

JSP---网上商城->单例模式

时间:2014-12-04 11:40:34      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   div   log   ad   as   

创建一个管理类

 1 public class CustomerMgr {
 2     private static CustomerMgr mgr = null;//声明一个静态的该类的对象
 3 
 4     private CustomerMgr() {//私有的构造方法,只能在类的内部构造对象
 5     }
 6 
 7     public static CustomerMgr getInstance() {
 8         if (mgr == null) {
 9             mgr = new CustomerMgr();
10         }
11         return mgr;
12     }
13 
14     public boolean add(Customer customer) {

例如:调用add方法,可以使用Customer.getInstance().add(customer)

如果不使用单例模式,则需要这样调用

CustomerMgr mgr=new CustomerMgr();

mgr.add(customer);

JSP---网上商城->单例模式

标签:style   blog   color   使用   sp   div   log   ad   as   

原文地址:http://www.cnblogs.com/beast-king/p/4142172.html

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