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

多例模式

时间:2017-01-16 22:47:59      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:dom   return   instance   color   tin   pre   exti   int   for   

多例模式【Multition Pattern 】

public class Emperor {
    public String name = "";
    private static int numOfEmperor = 2;
    private static ArrayList<Emperor> e = new ArrayList<Emperor>();
    static {
        for (int i = 0; i < numOfEmperor; i++) {
            e.add(new Emperor("emperor"+i));
        }
    }
    private Emperor(String name){
        this.name = name;
    }
    public static Emperor getInstance(){
        Random r = new Random();
        return e.get(r.nextInt(numOfEmperor));
    }
}

一天一个设计模式,嘿嘿!

多例模式

标签:dom   return   instance   color   tin   pre   exti   int   for   

原文地址:http://www.cnblogs.com/mbky/p/6291077.html

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