[size=16.000000pt]多例模式【[size=16.000000pt]MultitionPattern[size=16.000000pt]】
[size=11.000000pt]这种情况有没有?有!大点声,有没有? 有!,是,确实有,就出现在明朝,那三国期间的算不算,不算,各自称帝,各有各的地盘,国号不同。大家还记得那首诗《石灰吟》吗?作者是谁?于谦,他是被谁杀死的?明英宗朱祁镇,对,就是那个在土木堡之变中被瓦刺俘虏的皇帝,被俘虏后,他弟弟朱祁钰当上了皇帝,就是明景帝,估计当上皇帝后乐疯了,忘记把老哥朱祁镇削为太上皇了,我 Shit,在中国的历史上就这个时期是有 2 个皇帝,你说这期间的大臣多郁闷,两个皇帝耶,两个精神依附对象呀。
[size=11.000000pt]这个场景放到我们设计模式中就是叫有上限的多例模式(没上限的多例模式太容易了,和你直接 new 一个对象没啥差别,不讨论)怎么实现呢,看我出招先把两个皇帝定义出来:
[size=10.000000pt]package [size=10.000000pt]com.cbf4life.singleton2;[size=10.000000pt]import [size=10.000000pt]java.util.ArrayList;
[size=10.000000pt]import [size=10.000000pt]java.util.Random;
[size=10.000000pt]/**
* [size=10.000000pt]@author [size=10.000000pt]cbf4Life cbf4life@126.com
* I'm glad to share my knowledge with you all.
- [size=10.000000pt]* [size=10.000000pt]中国的历史上一般都是一个朝代一个皇帝,有两个皇帝的话,必然要[size=10.000000pt]PK[size=10.000000pt]出一个皇帝出来。
- [size=10.000000pt]* [size=10.000000pt]问题出来了:如果真在一个时间,中国出现了两个皇帝怎么办?比如明朝土木堡之变后,
- [size=10.000000pt]* [size=10.000000pt]明英宗被俘虏,明景帝即位,但是明景帝当上皇帝后乐疯了,竟然忘记把他老哥明英宗削为太上皇,
- [size=10.000000pt]* [size=10.000000pt]也就是在这一个多月的时间内,中国竟然有两个皇帝![size=10.000000pt]*
*/
[size=10.000000pt]@SuppressWarnings[size=10.000000pt]([size=10.000000pt]"all"[size=10.000000pt])[size=10.000000pt]public class [size=10.000000pt]Emperor {
[size=10.000000pt]private static int [size=10.000000pt]maxNumOfEmperor [size=10.000000pt]= 2; [size=10.000000pt]//[size=10.000000pt]最多只能有连个皇帝
[size=10.000000pt]privatestatic[size=10.000000pt]ArrayList[size=10.000000pt]emperorInfoList[size=10.000000pt]=[size=10.000000pt]new[size=10.000000pt]ArrayList([size=10.000000pt]maxNumOfEmperor[size=10.000000pt]); [size=10.000000pt]//[size=10.000000pt]皇帝叫什么名字
[size=10.000000pt]private static [size=10.000000pt]ArrayList [size=10.000000pt]emperorList[size=10.000000pt]=[size=10.000000pt]new [size=10.000000pt]ArrayList([size=10.000000pt]maxNumOfEmperor[size=10.000000pt]); [size=10.000000pt]//[size=10.000000pt]装皇帝的列表;
[size=10.000000pt]private static int [size=10.000000pt]countNumOfEmperor [size=10.000000pt]=0; [size=10.000000pt]//[size=10.000000pt]正在被人尊称的是那个皇帝
[size=10.000000pt]//[size=10.000000pt]先把[size=10.000000pt]2[size=10.000000pt]个皇帝产生出来[size=10.000000pt]static[size=10.000000pt]{
[size=10.000000pt]//[size=10.000000pt]把所有的皇帝都产生出来
[size=10.000000pt]for[size=10.000000pt]([size=10.000000pt]int [size=10.000000pt]i=0;i<[size=10.000000pt]maxNumOfEmperor[size=10.000000pt];i++){
[size=10.000000pt]emperorList[size=10.000000pt].add([size=10.000000pt]new [size=10.000000pt]Emperor([size=10.000000pt]"[size=10.000000pt]皇[size=10.000000pt]"[size=10.000000pt]+(i+1)+[size=10.000000pt]"[size=10.000000pt]帝[size=10.000000pt]"[size=10.000000pt]));}
[size=10.000000pt]}
[size=10.000000pt]//[size=10.000000pt]就这么多皇帝了,不允许再推举一个皇帝[size=10.000000pt](new [size=10.000000pt]一个皇帝)[size=10.000000pt]private [size=10.000000pt]Emperor(){
[size=10.000000pt]//[size=10.000000pt]世俗和道德约束你,目的就是不让你产生第二个皇帝[size=10.000000pt]}
[size=10.000000pt]private [size=10.000000pt]Emperor(String info){[size=10.000000pt]emperorInfoList[size=10.000000pt].add(info);
[size=10.000000pt]}
[size=10.000000pt]public static [size=10.000000pt]Emperor getInstance(){
Random random = [size=10.000000pt]new [size=10.000000pt]Random();
[size=10.000000pt]countNumOfEmperor [size=10.000000pt]= random.nextInt([size=10.000000pt]maxNumOfEmperor[size=10.000000pt]); [size=10.000000pt]//[size=10.000000pt]随机拉出一个皇帝,
[size=10.000000pt]只要是个精神领袖就成
[size=10.000000pt]return [size=10.000000pt](Emperor)[size=10.000000pt]emperorList[size=10.000000pt].get([size=10.000000pt]countNumOfEmperor[size=10.000000pt]);}
[size=10.000000pt]//[size=10.000000pt]皇帝叫什么名字呀
[size=10.000000pt]public static void [size=10.000000pt]emperorInfo(){
[size=10.000000pt]System.[size=10.000000pt]out[size=10.000000pt].println([size=10.000000pt]emperorInfoList[size=10.000000pt].get([size=10.000000pt]countNumOfEmperor[size=10.000000pt]));}
[size=10.000000pt]}
[size=11.000000pt]那大臣是比较悲惨了,两个皇帝呀,两个老子呀,怎么拜呀,不管了,只要是个皇帝就成: [size=10.000000pt]package [size=10.000000pt]com.cbf4life.singleton2;
[size=10.000000pt]/**
* [size=10.000000pt]@author [size=10.000000pt]cbf4Life cbf4life@126.com
* I'm glad to share my knowledge with you all.
* [size=10.000000pt]大臣们悲惨了,一个皇帝都伺候不过来了,现在还来了两个个皇帝[size=10.000000pt]* TND[size=10.000000pt],不管了,找到个皇帝,磕头,请按就成了!
[size=10.000000pt]*/
[size=10.000000pt]@SuppressWarnings[size=10.000000pt]([size=10.000000pt]"all"[size=10.000000pt])[size=10.000000pt]public class [size=10.000000pt]Minister {
[size=10.000000pt]/**
* [size=10.000000pt]@param [size=10.000000pt]args*/
[size=10.000000pt]public static void [size=10.000000pt]main(String[] args) {
[size=10.000000pt]int [size=10.000000pt]ministerNum =10; [size=10.000000pt]//10[size=10.000000pt]个大臣
[size=10.000000pt]for[size=10.000000pt]([size=10.000000pt]int [size=10.000000pt]i=0;i<ministerNum;i++){
Emperor emperor = Emperor.[size=10.000000pt]getInstance[size=10.000000pt]();System.[size=10.000000pt]out[size=10.000000pt].print([size=10.000000pt]"[size=10.000000pt]第[size=10.000000pt]"[size=10.000000pt]+(i+1)+[size=10.000000pt]"[size=10.000000pt]个大臣参拜的是:[size=10.000000pt]"[size=10.000000pt]);emperor.[size=10.000000pt]emperorInfo[size=10.000000pt]();
[size=10.000000pt]}}
[size=10.000000pt]}
[size=11.000000pt]那各位看官就可能会不屑了:有的大臣可是有骨气,只拜一个真神,你怎么处理?这个问题太简单,懒的详细回答你,getInstance(param)是不是就解决了这个问题?!自己思考,太 Easy 了。
|
|